Skip to content

Commit

Permalink
Merge pull request #51 from xcrap/main
Browse files Browse the repository at this point in the history
Large Screens Container Fixes
  • Loading branch information
cmgriffing authored Oct 31, 2024
2 parents 80a9b41 + 5bf53cf commit 4e01231
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions playgrounds/app/src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -141,10 +141,13 @@
}


/* Full App Height and Letting Footer in the End */
/*
Full App Height and Letting Footer in the End
Max Width to the Main Container for Larger Screen Sizes
*/
#app {
@apply min-h-screen flex flex-col ;
@apply min-h-screen flex flex-col;
}
#app main {
@apply w-full flex-1;
@apply w-full flex-1 max-w-screen-2xl mx-auto;
}

0 comments on commit 4e01231

Please sign in to comment.