diff options
author | Nicholas Johnson <nick@nicksphere.ch> | 2022-08-07 00:00:00 +0000 |
---|---|---|
committer | Nicholas Johnson <nick@nicksphere.ch> | 2022-08-07 00:00:00 +0000 |
commit | f1ae34beda32d80198919ba473997215715c1a6c7b1cce6dd3cb0811d0c95833 (patch) | |
tree | 70a7e5f63436f7a650f3f1208cdb29164f53462d74672004c77b0f71815e1a22 /static/css/style.css | |
parent | 076d4192afd7efa39def78ba0b01956aaa46e804894009d77f06300b8bb4a8d5 (diff) | |
download | hugo-theme-journal-f1ae34beda32d80198919ba473997215715c1a6c7b1cce6dd3cb0811d0c95833.tar.gz hugo-theme-journal-f1ae34beda32d80198919ba473997215715c1a6c7b1cce6dd3cb0811d0c95833.zip |
Space out nav links for mobile devices
Diffstat (limited to 'static/css/style.css')
-rw-r--r-- | static/css/style.css | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/static/css/style.css b/static/css/style.css index 572c6c9..20c8635 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -92,3 +92,13 @@ ul { p, pre, ul, ol, blockquote { margin-bottom: 1.4em; } + +nav ul { + list-style: none; +} + +@media (pointer: coarse) { + .return, .navlink { + margin-bottom: 1em; + } +} |