mirror of
https://github.com/zedeus/nitter
synced 2026-09-05 22:59:31 +00:00
Rewrite sass variables to support themes
This commit is contained in:
parent
d31ada9bad
commit
81160b1915
16 changed files with 173 additions and 94 deletions
|
|
@ -19,11 +19,11 @@
|
|||
|
||||
&:hover {
|
||||
.overlay-circle {
|
||||
border-color: $accent;
|
||||
border-color: var(--accent);
|
||||
}
|
||||
|
||||
.overlay-triangle {
|
||||
border-color: transparent transparent transparent $accent;
|
||||
border-color: transparent transparent transparent var(--accent);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -51,11 +51,11 @@
|
|||
|
||||
@mixin input-colors {
|
||||
&:hover {
|
||||
border-color: $accent;
|
||||
border-color: var(--accent);
|
||||
}
|
||||
|
||||
&:active {
|
||||
border-color: $accent_light;
|
||||
border-color: var(--accent_light);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue