Skip to content

Commit

Permalink
Merge pull request #71 from JoelBerglund05/backup
Browse files Browse the repository at this point in the history
Backup fix phone
  • Loading branch information
JoelBerglund05 authored Dec 11, 2024
2 parents 5042d66 + 9ce0f08 commit 5f17d76
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 9 deletions.
25 changes: 21 additions & 4 deletions css/main.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion css/main.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 22 additions & 4 deletions css/scss/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -108,14 +108,32 @@ button:hover {

@media (width < 45em) {
.question-grid {
margin-left: 1em;
margin-right: 1em;
margin: 0 1em;
}
}

@media (width < 35em) {
.question-grid {
margin-left: 0em;
margin-right: 0em;
margin: 0 .5em;
}
.header-h1 {
margin: 0 .5em;
}
.answer-btn {
font-size: 1em;
padding: .5em 1.5em .5em 1.5em;
}
}
@media (width < 20em) {
.question-grid {
margin: 0 .5em;

}
.header-h1 {
font-size: 1.25em;
}
.question-grid {
grid-template-columns: repeat(1, 1fr);
gap: .75em .5em;
}
}

0 comments on commit 5f17d76

Please sign in to comment.