Skip to content

Commit

Permalink
Merge pull request #20 from danrusu/danrusu-patch-1
Browse files Browse the repository at this point in the history
Update main.css
  • Loading branch information
danrusu authored Jan 25, 2025
2 parents a5d61d0 + a05557b commit e5ff864
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/html/public/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,18 @@ section a {



@media (max-width: 500px) {
main {
display: grid;
grid-template-columns: 1fr;
grid-template-rows: auto 1fr;
}
}

@media (max-width: 400px) {
main {
display: grid;
grid-template-columns: 1fr;
grid-template-rows: auto 1fr;
}
}
}

0 comments on commit e5ff864

Please sign in to comment.