Skip to content

Commit

Permalink
Fix white space showing on dark mode at the bottom of the page
Browse files Browse the repository at this point in the history
  • Loading branch information
kmiguel10 committed Oct 30, 2023
1 parent 26b42d7 commit 03c74cd
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,17 @@
@tailwind utilities;

html,
body,
main {
body {
@apply bg-gray-1 text-gray-12;
font-weight: 300;
height: 100%;
height: 100%; /* Set the height to 100% to fill the entire viewport height */
}

main {
@apply bg-gray-1 text-gray-12;
display: flex;
flex-direction: column;
min-height: 100%; /* Set the minimum height to 100% viewport height */
}

* {
Expand Down

0 comments on commit 03c74cd

Please sign in to comment.