diff options
author | Jasper Ras <jras@hostnet.nl> | 2024-11-29 09:01:42 +0100 |
---|---|---|
committer | Jasper Ras <jras@hostnet.nl> | 2024-11-29 09:01:42 +0100 |
commit | c7b8fe35d26966dab2d5dc14d9eaaa5ef4e84b41 (patch) | |
tree | 73542b9ae7cdc6cd2bb36e7a402ca365c18560cb /style.scss | |
parent | a27e82a0be15a5948dab66af27b923f8b487dd2e (diff) |
adjust bar colour, add some padding to sys tray icons
Diffstat (limited to 'style.scss')
-rw-r--r-- | style.scss | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1,6 +1,6 @@ @use "sass:color"; -$bg: #212223; +$bg: #081221; $fg: #f1f1f1; $accent: #378DF7; $radius: 7px; @@ -8,7 +8,7 @@ $radius: 7px; window.Bar { border: none; box-shadow: none; - background-color: $bg; + background-color: color.adjust($bg, $alpha: -0.3); color: $fg; font-size: 1.1em; font-weight: bold; @@ -89,4 +89,8 @@ window.Bar { margin: -.2em; } } + + .SysTray button { + padding-right: 1em; + } } |