FIX: Better support for mobile phones

This commit is contained in:
Nicolás Hatcher
2024-10-09 18:08:06 +02:00
committed by Nicolás Hatcher Andrés
parent 58dfdd329e
commit 4016eb5944
5 changed files with 24 additions and 5 deletions

View File

@@ -127,7 +127,7 @@ function Sheet(props: SheetProps) {
const StyledMenu = styled(Menu)``;
const StyledMenuItem = styled(MenuItem)`
font-size: 12px;
font-size: 12px;
`;
const StyledButton = styled(Button)`

View File

@@ -397,6 +397,7 @@ const ToolbarContainer = styled("div")`
font-family: Inter;
border-radius: 4px 4px 0px 0px;
overflow-x: auto;
padding-left: 11px;
`;
type TypeButtonProperties = { $pressed: boolean; $underlinedColor?: string };