Skip to content

Commit

Permalink
Merge pull request #1178 from eed3si9n/wip/buttons
Browse files Browse the repository at this point in the history
Fix the button rendering on smaller screens
  • Loading branch information
eed3si9n committed Jan 25, 2024
2 parents 5554f55 + 3098053 commit a62c9e1
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 a62c9e1

Please sign in to comment.