Skip to content

Commit

Permalink
fix: zoom buttons position on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
jsun969 committed Oct 3, 2024
1 parent bb83465 commit a9d73b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ZoomButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const ZoomButtons = () => {
const { height, setHeight } = useCalendarHourHeight();

return (
<div className="fixed bottom-8 right-8 z-[100] flex flex-col gap-2">
<div className="fixed bottom-8 right-8 z-[100] flex flex-col gap-2 mobile:bottom-3 mobile:right-3">
<Tooltip content={t('zoom.zoom-in')} placement="left">
<Button
onClick={() => setHeight((h) => h + 0.5)}
Expand Down

0 comments on commit a9d73b7

Please sign in to comment.