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

Increase tap-target size of nav links

This commit is contained in:
Rohan Kumar 2022-04-29 17:53:19 -07:00
parent cc59c9abf0
commit 7bdd93d875
No known key found for this signature in database
GPG key ID: 1E892DB2A5F84479
2 changed files with 15 additions and 5 deletions

View file

@ -4,6 +4,6 @@
"font-family-no-duplicate-names": [ true, { "ignoreFontFamilyNames": ["monospace"] } ],
"indentation": "tab",
"max-nesting-depth": 1,
"selector-max-compound-selectors": 3
"selector-max-compound-selectors": 4
}
}

View file

@ -96,16 +96,26 @@ h1 {
}
}
/* Compensate for misalignment caused by a padding increase. */
header nav,
footer nav {
margin-left: -.25em;
}
/* Increase nav link tap target size a bit */
header nav li a,
footer nav li a {
/* inline-end doesn't work in netsurf. -right should stil make sense
* in RTL machine translation, it'll just look a bit indented. */
padding: .25em;
}
/* single-line nav on widescreen and print.
* Single-line nav on print saves almost half a page. */
@media print, (min-width: 32em) {
header nav li,
footer nav li {
display: inline;
/* inline-end doesn't work in netsurf. -right should stil make sense
* in RTL machine translation, it'll just look a bit indented. */
padding-right: .5em;
}
}