Skip to content

Commit

Permalink
Fix the button rendering on smaller screens
Browse files Browse the repository at this point in the history
Fixes sbt#1176
  • Loading branch information
eed3si9n committed Jan 25, 2024
1 parent 5554f55 commit 3098053
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,5 @@

.button {
margin-left: 2rem;
margin-bottom: 1rem;
}
8 changes: 7 additions & 1 deletion src/pages/index.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,11 @@
.buttons {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}

@media screen and (min-width: 600px) {
.buttons {
justify-content: center;
}
}

0 comments on commit 3098053

Please sign in to comment.