1
0
mirror of https://github.com/zedeus/nitter.git synced 2025-12-07 20:45:36 -05:00

Rewrite sass variables to support themes

This commit is contained in:
Zed
2019-10-23 11:15:57 +02:00
parent d31ada9bad
commit 81160b1915
16 changed files with 173 additions and 94 deletions

View File

@@ -11,7 +11,7 @@
.main-thread {
margin-bottom: 20px;
background-color: $bg_panel;
background-color: var(--bg_panel);
}
.main-tweet, .replies {
@@ -24,14 +24,14 @@
}
.reply {
background-color: $bg_panel;
background-color: var(--bg_panel);
margin-bottom: 10px;
}
.thread-line {
.timeline-item::before,
&.timeline-item::before {
background: $accent_dark;
background: var(--accent_dark);
content: '';
position: relative;
min-width: 3px;
@@ -53,7 +53,7 @@
.more-replies::before {
content: '...';
background: unset;
color: $more_replies_dots;
color: var(--more_replies_dots);
font-weight: bold;
font-size: 20px;
line-height: 0.25em;