Skip to content

Commit

Permalink
fix width on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
sethbrasile committed Sep 25, 2024
1 parent d202711 commit 8f7a749
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/public/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ a:hover {

body {
display: flex;
width: 100vw;
}

#main-page {
Expand All @@ -40,7 +41,8 @@ h1 {
}

#app {
max-width: 1280px;
max-width: 100vw;
/* max-width: 1280px; */
padding: 2rem;
}

Expand Down

0 comments on commit 8f7a749

Please sign in to comment.