Skip to content

Commit

Permalink
fix: increase grid min height in vertical mode for small devices
Browse files Browse the repository at this point in the history
  • Loading branch information
soumitradev committed Jan 5, 2024
1 parent f39ea74 commit 310e66c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/TimetableGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ export function TimetableGrid({
{/* biome-ignore lint/a11y/useKeyWithClickEvents: <explanation> */}
<div
className={`bg-background border border-muted dark:border-muted/70 cursor-pointer transition duration-200 ease-in-out text-foreground/65 p-1.5 ${
isVertical ? "min-h-20 sm:min-h-16" : "min-h-20"
isVertical ? "min-h-28 sm:min-h-16" : "min-h-20"
}`}
onClick={(event) => handleUnitClick(e, event)}
>
Expand Down

0 comments on commit 310e66c

Please sign in to comment.