Skip to content

Commit

Permalink
fix: fix layout on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
isqua committed Jun 1, 2024
1 parent 3df9201 commit b4bcd0d
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,23 @@ body {

#app {
display: flex;
flex-direction: column;
}

.settings {
padding: var(--content-gap);
display: flex;
flex-direction: column;
width: 400px;
}

@media screen and (min-width: 800px) {
#app {
flex-direction: row;
}

.settings {
width: 400px;
}
}

label {
Expand Down

0 comments on commit b4bcd0d

Please sign in to comment.