diff options
author | Arcade Wise <l3gacy.b3ta@disroot.org> | 2022-12-01 14:27:57 -0500 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2022-12-01 20:09:05 +0000 |
commit | 9bd1932d9c8ea2122f90e29d6cc465c2a0f2fc91 (patch) | |
tree | a80b123346b531dc17302b65f58cb9ec44e8a1d6 | |
parent | 132b2ec317bc83db07adddd5f478837af0b56fdd (diff) |
bugfixes for darkmode
Signed-off-by: Arcade Wise <l3gacy.b3ta@disroot.org>
-rw-r--r-- | apioforum/static/style.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apioforum/static/style.css b/apioforum/static/style.css index 92e6dcd..652105a 100644 --- a/apioforum/static/style.css +++ b/apioforum/static/style.css @@ -14,6 +14,7 @@ body { font-family: sans-serif; word-wrap: break-word; } } a { color: var(--blue) } +a:visited { color: var(--visited); } .post { margin: 0px; } .post:nth-child(even) { background-color: var(--alternating-colour-even) } @@ -340,9 +341,8 @@ fieldset { margin-bottom: 15px; } display: inline; } -.breadcrumbs lili::before { - content: "/\00a0"; - padding: 8px; +.breadcrumbs li::before { + content: "/"; } textarea { |