FIX: Layout and spacing adjustments

This commit is contained in:
Daniel
2025-01-12 23:19:26 +01:00
committed by Nicolás Hatcher Andrés
parent 43e9cb3523
commit eb03efba3e
3 changed files with 22 additions and 12 deletions

View File

@@ -196,27 +196,31 @@ const StyledDialogTitle = styled(DialogTitle)`
const NameListWrapper = styled(Stack)` const NameListWrapper = styled(Stack)`
overflow-y: auto; overflow-y: auto;
gap: 12px;
`; `;
const StyledBox = styled(Box)` const StyledBox = styled(Box)`
display: flex;
flex-direction: column;
justify-content: center;
width: 161.67px; width: 161.67px;
`; `;
const StyledDialogContent = styled(DialogContent)` const StyledDialogContent = styled(DialogContent)`
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 12px; padding: 0px;
padding: 20px 12px 20px 20px;
`; `;
const StyledRangesHeader = styled(Stack)(({ theme }) => ({ const StyledRangesHeader = styled(Stack)(({ theme }) => ({
flexDirection: "row", flexDirection: "row",
padding: "0 8px", minHeight: "32px",
gap: "12px", padding: "0px 84px 0px 12px",
gap: "8px",
fontFamily: theme.typography.fontFamily, fontFamily: theme.typography.fontFamily,
fontSize: "12px", fontSize: "12px",
fontWeight: "700", fontWeight: "700",
borderBottom: `1px solid ${theme.palette.info.light}`,
backgroundColor: theme.palette.grey["50"],
color: theme.palette.info.main, color: theme.palette.info.main,
})); }));

View File

@@ -92,10 +92,10 @@ function NamedRangeActive(properties: NamedRangeProperties) {
} }
}} }}
> >
<StyledCheck size={12} /> <StyledCheck size={16} />
</IconButton> </IconButton>
<StyledIconButton onClick={onCancel}> <StyledIconButton onClick={onCancel}>
<X size={12} /> <X size={16} />
</StyledIconButton> </StyledIconButton>
</IconsWrapper> </IconsWrapper>
</StyledBox> </StyledBox>
@@ -118,8 +118,12 @@ const MenuSpanGrey = styled("span")`
const StyledBox = styled(Box)` const StyledBox = styled(Box)`
display: flex; display: flex;
flex-direction: row;
align-items: center;
gap: 12px; gap: 12px;
width: 577px; width: auto;
padding: 12px 20px 12px 4px;
box-shadow: 0 -1px 0 ${theme.palette.grey[300]};
`; `;
const StyledTextField = styled(TextField)(() => ({ const StyledTextField = styled(TextField)(() => ({

View File

@@ -29,10 +29,10 @@ function NamedRangeInactive(properties: NamedRangeInactiveProperties) {
<StyledDiv>{formula}</StyledDiv> <StyledDiv>{formula}</StyledDiv>
<IconsWrapper> <IconsWrapper>
<StyledIconButtonBlack onClick={onEdit} disabled={!showOptions}> <StyledIconButtonBlack onClick={onEdit} disabled={!showOptions}>
<PencilLine size={12} /> <PencilLine size={16} />
</StyledIconButtonBlack> </StyledIconButtonBlack>
<StyledIconButtonRed onClick={onDelete} disabled={!showOptions}> <StyledIconButtonRed onClick={onDelete} disabled={!showOptions}>
<Trash2 size={12} /> <Trash2 size={16} />
</StyledIconButtonRed> </StyledIconButtonRed>
</IconsWrapper> </IconsWrapper>
</WrappedLine> </WrappedLine>
@@ -55,9 +55,11 @@ const StyledIconButtonRed = styled(IconButton)(({ theme }) => ({
const WrappedLine = styled(Box)({ const WrappedLine = styled(Box)({
display: "flex", display: "flex",
height: "28px", flexDirection: "row",
maxHeight: "52px",
alignItems: "center", alignItems: "center",
gap: "12px", gap: "12px",
padding: "12px 20px 12px 4px",
}); });
const StyledDiv = styled("div")(({ theme }) => ({ const StyledDiv = styled("div")(({ theme }) => ({
@@ -65,7 +67,7 @@ const StyledDiv = styled("div")(({ theme }) => ({
fontSize: "12px", fontSize: "12px",
fontWeight: "400", fontWeight: "400",
color: theme.palette.common.black, color: theme.palette.common.black,
width: "153.67px", width: "100%",
paddingLeft: "8px", paddingLeft: "8px",
})); }));