Skip to content

Commit

Permalink
fix: Improve margins for smaller screens
Browse files Browse the repository at this point in the history
  • Loading branch information
beer-psi committed Jul 26, 2023
1 parent 13c15bd commit 01b8c6f
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion internal/build/web/styles/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,19 @@ body {
opacity: 0;
}

@media only screen and (max-width: 767px) {
body {
max-width: 22rem;
}
}

@media only screen and (max-width: 376px) {
body {
max-width: 20rem;
}
}


body.ready {
opacity: 1;
}
Expand Down Expand Up @@ -59,7 +72,6 @@ header p {
}

.description {
width: 91.6667%;
margin: auto 2rem;
}

Expand Down

0 comments on commit 01b8c6f

Please sign in to comment.