Merge pull request #780 from lethemanh/779-increase-space-between-switch-day-button

#779 increase space between switch day buttons on mobile
This commit is contained in:
lethemanh
2026-04-14 14:33:48 +07:00
committed by GitHub
2 changed files with 4 additions and 3 deletions
+1
View File
@@ -53,6 +53,7 @@ export const MobileMenubar: React.FC<MobileMenubarProps> = ({
<IconButton
onClick={onOpenSidebar}
aria-label={t('menubar.toggleSidebar')}
sx={{ mr: 2 }}
>
<MenuIcon />
</IconButton>
@@ -11,13 +11,13 @@ export const SmallNavigationControls: React.FC<{
return (
<div className="navigation-controls">
<Stack direction="row">
<Stack direction="row" spacing={1.25}>
<IconButton
onClick={() => onNavigate('prev')}
aria-label={t('menubar.prev')}
title={t('menubar.prev')}
>
<ChevronLeftIcon sx={{ height: 20 }} />
<ChevronLeftIcon sx={{ height: 30 }} />
</IconButton>
<IconButton
color="primary"
@@ -36,7 +36,7 @@ export const SmallNavigationControls: React.FC<{
aria-label={t('menubar.next')}
title={t('menubar.next')}
>
<ChevronRightIcon sx={{ height: 20 }} />
<ChevronRightIcon sx={{ height: 30 }} />
</IconButton>
</Stack>
</div>