diff options
author | 2025-03-02 17:56:12 +0300 | |
---|---|---|
committer | 2025-03-02 17:57:55 +0300 | |
commit | e79fa091cfbdbd9dfe2ed19a0a5f92604047b0a9 (patch) | |
tree | aca9f03423c6cd8566a0204aeda8b31e1f83b989 /style.scss | |
parent | feat: basic topbar features (diff) | |
download | ags-config-e79fa091cfbdbd9dfe2ed19a0a5f92604047b0a9.tar.gz ags-config-e79fa091cfbdbd9dfe2ed19a0a5f92604047b0a9.tar.bz2 ags-config-e79fa091cfbdbd9dfe2ed19a0a5f92604047b0a9.tar.lz ags-config-e79fa091cfbdbd9dfe2ed19a0a5f92604047b0a9.tar.xz ags-config-e79fa091cfbdbd9dfe2ed19a0a5f92604047b0a9.tar.zst ags-config-e79fa091cfbdbd9dfe2ed19a0a5f92604047b0a9.zip |
feat: basic tray and improved workspaces buttons
Diffstat (limited to '')
-rw-r--r-- | style.scss | 28 |
1 files changed, 23 insertions, 5 deletions
@@ -9,7 +9,7 @@ window.Bar { color: #fff; >box { - padding: 4px 0; + padding: 0; } } @@ -22,14 +22,11 @@ box.Workspaces { border-radius: 5px; border: none; - margin: 2px 4px; + margin: 5px 2px; padding: 0; background: #ccc; transition: min-width 2s ease-in-out; - // transition-property: min-width; - // transition-duration: 2s; - // transition-timing-function: ease-out; &.active { min-width: 25px; @@ -40,3 +37,24 @@ box.Workspaces { } } } + +box.Tray { + margin-right: 5px; + + button { + margin: 0; + padding: 1px; + border: none; + border-radius: 0; + min-width: 10px; + min-height: 10px; + + background: #000; + } +} + + +window.Notifications { + background-color: #000; + color: #fff; +} |