1
0
Fork 0
mirror of https://git.sr.ht/~seirdy/seirdy.one synced 2024-09-19 20:02:10 +00:00

Inline nav links in print media

This commit is contained in:
Rohan Kumar 2022-03-27 17:24:07 -07:00
parent 6b67668291
commit ccce5c94a9
No known key found for this signature in database
GPG key ID: 1E892DB2A5F84479
3 changed files with 5 additions and 5 deletions

View file

@ -84,7 +84,7 @@ nav li,
}
/* single-line nav on widescreen */
@media (min-width: 32em) {
@media print, (min-width: 32em) {
header nav li {
display: inline;
padding-right: 0.5em;

View file

@ -335,8 +335,8 @@ Exceptions exist: one or two very simple responsive changes won't hurt. The main
For example, the only responsive layout change on my website (https://seirdy.one) is a single CSS declaration to switch between inline and multi-line navigation links at the top of the page:
```
@media (min-width: 32rem) {
nav li {
@media print, (min-width: 32rem) {
header nav li {
display: inline;
}
}

View file

@ -296,8 +296,8 @@ The only responsive layout change on [my website](https://seirdy.one/) is a sing
</figcaption>
```
@media (min-width: 32rem) {
nav li {
@media print, (min-width: 32rem) {
header nav li {
display: inline;
}
}