FIX: Correct font-size in navigation bar
This commit is contained in:
committed by
Nicolás Hatcher Andrés
parent
abd4ce4ea5
commit
3966dbc790
@@ -115,7 +115,7 @@ const ItemColor = styled("div")`
|
|||||||
`;
|
`;
|
||||||
|
|
||||||
const ItemName = styled("div")`
|
const ItemName = styled("div")`
|
||||||
font-size: 13px;
|
font-size: 12px;
|
||||||
color: #333;
|
color: #333;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
|||||||
@@ -73,23 +73,23 @@ function Sheet(props: SheetProps) {
|
|||||||
horizontal: 6,
|
horizontal: 6,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<MenuItem
|
<StyledMenuItem
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
handleOpenRenameDialog();
|
handleOpenRenameDialog();
|
||||||
handleClose();
|
handleClose();
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
Rename
|
Rename
|
||||||
</MenuItem>
|
</StyledMenuItem>
|
||||||
<MenuItem
|
<StyledMenuItem
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
setColorPickerOpen(true);
|
setColorPickerOpen(true);
|
||||||
handleClose();
|
handleClose();
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
Change Color
|
Change Color
|
||||||
</MenuItem>
|
</StyledMenuItem>
|
||||||
<MenuItem
|
<StyledMenuItem
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
props.onDeleted();
|
props.onDeleted();
|
||||||
handleClose();
|
handleClose();
|
||||||
@@ -97,7 +97,7 @@ function Sheet(props: SheetProps) {
|
|||||||
>
|
>
|
||||||
{" "}
|
{" "}
|
||||||
Delete
|
Delete
|
||||||
</MenuItem>
|
</StyledMenuItem>
|
||||||
</StyledMenu>
|
</StyledMenu>
|
||||||
<SheetRenameDialog
|
<SheetRenameDialog
|
||||||
isOpen={renameDialogOpen}
|
isOpen={renameDialogOpen}
|
||||||
@@ -126,6 +126,10 @@ function Sheet(props: SheetProps) {
|
|||||||
|
|
||||||
const StyledMenu = styled(Menu)``;
|
const StyledMenu = styled(Menu)``;
|
||||||
|
|
||||||
|
const StyledMenuItem = styled(MenuItem)`
|
||||||
|
font-size: 12px;
|
||||||
|
`;
|
||||||
|
|
||||||
const StyledButton = styled(Button)`
|
const StyledButton = styled(Button)`
|
||||||
width: 15px;
|
width: 15px;
|
||||||
height: 24px;
|
height: 24px;
|
||||||
|
|||||||
Reference in New Issue
Block a user