Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<link rel="manifest" href="/manifest.json" />
</head>
<body>
<div id="root" class="flex justify-center min-h-screen bg-base-200"></div>
<div id="root" class="flex justify-center h-full bg-base-200"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ html {
body {
position: fixed;
width: 100%;
height: 100%;
height: 100dvh;
}

/* Common page container styles */
Expand Down
2 changes: 1 addition & 1 deletion src/shared/components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ const Layout = ({children}: {children: ReactNode}) => {

return (
<div
className={`relative flex flex-col w-full h-screen overflow-hidden ${appearance.limitedMaxWidth ? "max-w-screen-2xl mx-auto" : ""}`}
className={`relative flex flex-col w-full h-full overflow-hidden ${appearance.limitedMaxWidth ? "max-w-screen-2xl mx-auto" : ""}`}
>
<div
className="flex relative flex-1 overflow-hidden min-w-0 w-full"
Expand Down
Loading