diff options
author | Jordan <me@jordan.im> | 2022-08-20 17:22:37 -0700 |
---|---|---|
committer | Jordan <me@jordan.im> | 2022-08-20 17:22:37 -0700 |
commit | 5e3626a717e7e035d5c009ecc1b8aac733d5c16b (patch) | |
tree | 43bb980e35982bfbeb06a3f652df3bdb55baae82 | |
parent | e6b979e055d2c90ffbc14ce305cf9563d0955c1d (diff) | |
download | crane-5e3626a717e7e035d5c009ecc1b8aac733d5c16b.tar.gz crane-5e3626a717e7e035d5c009ecc1b8aac733d5c16b.zip |
templates: zero-out category padding
-rw-r--r-- | templates/layout.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/layout.html b/templates/layout.html index b69ee49..6f55e20 100644 --- a/templates/layout.html +++ b/templates/layout.html @@ -30,7 +30,7 @@ a.permalink { color: var(--ansi3); text-decoration: none; } div.paper { padding-bottom: 1em; } div.cat-cont { } div.cat { justify-content: space-between; display: flex; flex-wrap: wrap; } -div.cat a { padding: 0rem 1rem 1rem 0rem; } +div.cat a { padding: 0rem; } div.action { padding-bottom: 1em; margin-left: 1em; } span.doi a { text-decoration: none; } span.title a { text-decoration: underline; color: blue; } |