FIX: Column/Row width/height UI issues

This commit is contained in:
Nicolás Hatcher
2024-10-26 22:39:40 +02:00
committed by Nicolás Hatcher Andrés
parent 04d8c658ab
commit 0c69889832
5 changed files with 13 additions and 11 deletions

View File

@@ -17,5 +17,5 @@ export const outlineBackgroundColor = "#F2994A1A";
export const LAST_COLUMN = 16_384;
export const LAST_ROW = 1_048_576;
export const ROW_HEIGH_SCALE = 1.25;
export const COLUMN_WIDTH_SCALE = 1.25;
export const ROW_HEIGH_SCALE = 1;
export const COLUMN_WIDTH_SCALE = 1;

View File

@@ -458,7 +458,7 @@ const StyledPopover = styled(Popover)`
padding: 0px;
}
font-family: ${({ theme }) => theme.typography.fontFamily};
font-size: 13px;
font-size: 12px;
`;
const BorderPickerDialog = styled("div")`
@@ -483,7 +483,7 @@ const Button = styled("button")<TypeButtonProperties>(
justifyContent: "center",
// fontSize: "26px",
border: "0px solid #fff",
borderRadius: "2px",
borderRadius: "4px",
marginRight: "5px",
transition: "all 0.2s",
cursor: "pointer",
@@ -501,7 +501,7 @@ const Button = styled("button")<TypeButtonProperties>(
borderTop: $underlinedColor ? "3px solid #FFF" : "none",
borderBottom: $underlinedColor ? `3px solid ${$underlinedColor}` : "none",
color: "#21243A",
backgroundColor: $pressed ? theme.palette.grey["600"] : "inherit",
backgroundColor: $pressed ? theme.palette.grey["200"] : "inherit",
"&:hover": {
backgroundColor: "#F1F2F8",
borderTopColor: "#F1F2F8",