Skip to content

Commit

Permalink
fix: Fix height
Browse files Browse the repository at this point in the history
  • Loading branch information
ContentsViewer committed Aug 28, 2024
1 parent 1dbb011 commit 79d38c0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/albums/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -538,6 +538,7 @@ export default function Page() {
mr: `env(safe-area-inset-right, 0)`,
position: "relative",
height: "100%",
overflow: "hidden",
}}
>
<Fade in={currentAlbum !== undefined} timeout={1000} unmountOnExit>
Expand Down Expand Up @@ -577,7 +578,7 @@ export default function Page() {
pt: 8,
pb: `calc(env(safe-area-inset-bottom, 0) + 144px)`,
overflow: "auto",
minHeight: "100vh",
// minHeight: "100vh",
height: "100%",
scrollbarColor: `${colorOnSurfaceVariant} transparent`,
scrollbarWidth: "thin",
Expand Down

0 comments on commit 79d38c0

Please sign in to comment.