theme: fix alignment of tags in rtl #364

This commit is contained in:
Sören Weber 2022-11-07 20:54:38 +01:00
parent 8b6767779e
commit a13a13172a
No known key found for this signature in database
GPG key ID: BEC6D55545451B6D
2 changed files with 3 additions and 1 deletions

View file

@ -451,6 +451,7 @@
#body .tags a.tag-link {
background-color: #7dc903; /* var(--TAG-BG-color) */
color: #ffffff; /* var(--MAIN-BG-color) */
margin-right: 16px;
}
#body .tags a.tag-link:before {

View file

@ -13,7 +13,8 @@
font-size: 0.8em;
font-weight: 400;
line-height: 2em;
margin: 0 16px 8px 0;
margin: 0 0 8px 0;
margin-inline-end: 16px;
padding: 0 10px 0 12px;
position: relative;
}