diff options
author | Daniel Schadt <kingdread@gmx.de> | 2023-11-29 19:00:26 +0100 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2023-11-29 19:00:26 +0100 |
commit | cf5870f1081a82ebb532d461f9383a77513b8ae0 (patch) | |
tree | 71462fc7dd0c419951a892e16f4d9ce886f978bd /static/sass | |
parent | b2845952da634202be913fdf0e68e6cb55b67d80 (diff) | |
download | moeka-cf5870f1081a82ebb532d461f9383a77513b8ae0.tar.gz moeka-cf5870f1081a82ebb532d461f9383a77513b8ae0.tar.bz2 moeka-cf5870f1081a82ebb532d461f9383a77513b8ae0.zip |
separate multiple lines with tags
Diffstat (limited to 'static/sass')
-rw-r--r-- | static/sass/main.scss | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/static/sass/main.scss b/static/sass/main.scss index 5d7e9ad..90496b0 100644 --- a/static/sass/main.scss +++ b/static/sass/main.scss @@ -102,6 +102,7 @@ h1.topmost { .article { .article-meta { margin-top: 0; + margin-bottom: 0; color: $muted-color; text-align: center; font-size: 13pt; @@ -137,9 +138,13 @@ ul.tags { list-style-type: none; padding-left: 0; font-size: 12pt; + /* Add 8px here and 8px in the li element, that way we also get separation + * between multiple rows of tags. */ + margin-top: 8px; li { display: inline-block; margin-right: 5px; + margin-top: 8px; } a { font-style: normal; |