fix: mobile adjustments

This commit is contained in:
Daniel
2025-11-25 22:04:04 +01:00
committed by Nicolás Hatcher
parent a345d7c9ac
commit 402a13bd00
2 changed files with 5 additions and 4 deletions

View File

@@ -193,9 +193,6 @@ const RightContainer = styled("a")`
height: 100%;
padding: 0px 8px;
gap: 4px;
@media (max-width: 769px) {
display: none;
}
`;
const LogoLink = styled("div")`
@@ -215,6 +212,9 @@ const LogoLink = styled("div")`
transition: "all 0.2s";
outline: 1px solid ${theme.palette.grey["200"]};
}
@media (max-width: 769px) {
display: none;
}
`;
export default SheetTabBar;

View File

@@ -210,7 +210,8 @@ const WorkbookSettingsDialog = (properties: WorkbookSettingsDialogProps) => {
const StyledDialog = styled(Dialog)`
& .MuiPaper-root {
max-width: 320px;
min-width: 320px;
width: 320px;
min-width: 280px;
border-radius: 8px;
padding: 0px;
}