Skip to content

Commit

Permalink
Fix glaring dark mode issues
Browse files Browse the repository at this point in the history
  • Loading branch information
clarkwinkelmann committed Feb 19, 2022
1 parent 105b085 commit 46ab36b
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion resources/less/forum.less
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,18 @@
padding: 5px 10px;
text-align: left;
border-bottom: 1px solid #eee;

& when (@config-dark-mode = true) {
border-bottom-color: #444;
}
}

tr:nth-child(odd) td {
background: #fafafa;

& when (@config-dark-mode = true) {
background: rgba(255, 255, 255, 0.03);
}
}

img {
Expand All @@ -29,7 +37,7 @@
bottom: 0;
right: 0;
width: 200px;
background: white;
background: var(--body-bg);
border: 2px solid #aaa;
padding: 10px;
text-align: center;
Expand Down

0 comments on commit 46ab36b

Please sign in to comment.