FIX: Correct font-size in navigation bar

This commit is contained in:
Nicolás Hatcher
2024-10-08 21:39:41 +02:00
committed by Nicolás Hatcher Andrés
parent abd4ce4ea5
commit 3966dbc790
2 changed files with 11 additions and 7 deletions

View File

@@ -115,7 +115,7 @@ const ItemColor = styled("div")`
`;
const ItemName = styled("div")`
font-size: 13px;
font-size: 12px;
color: #333;
`;

View File

@@ -73,23 +73,23 @@ function Sheet(props: SheetProps) {
horizontal: 6,
}}
>
<MenuItem
<StyledMenuItem
onClick={() => {
handleOpenRenameDialog();
handleClose();
}}
>
Rename
</MenuItem>
<MenuItem
</StyledMenuItem>
<StyledMenuItem
onClick={() => {
setColorPickerOpen(true);
handleClose();
}}
>
Change Color
</MenuItem>
<MenuItem
</StyledMenuItem>
<StyledMenuItem
onClick={() => {
props.onDeleted();
handleClose();
@@ -97,7 +97,7 @@ function Sheet(props: SheetProps) {
>
{" "}
Delete
</MenuItem>
</StyledMenuItem>
</StyledMenu>
<SheetRenameDialog
isOpen={renameDialogOpen}
@@ -126,6 +126,10 @@ function Sheet(props: SheetProps) {
const StyledMenu = styled(Menu)``;
const StyledMenuItem = styled(MenuItem)`
font-size: 12px;
`;
const StyledButton = styled(Button)`
width: 15px;
height: 24px;