diff options
author | 2025-03-18 16:47:58 +0300 | |
---|---|---|
committer | 2025-03-18 16:50:29 +0300 | |
commit | 63742be30723555ab54c7b11136dfaf6f83d0c2e (patch) | |
tree | 2abb956786f56eb41bc37fac464448fc53225de1 /style.scss | |
parent | feat: dynamic workspace updating (diff) | |
download | ags-config-63742be30723555ab54c7b11136dfaf6f83d0c2e.tar.gz ags-config-63742be30723555ab54c7b11136dfaf6f83d0c2e.tar.bz2 ags-config-63742be30723555ab54c7b11136dfaf6f83d0c2e.tar.lz ags-config-63742be30723555ab54c7b11136dfaf6f83d0c2e.tar.xz ags-config-63742be30723555ab54c7b11136dfaf6f83d0c2e.tar.zst ags-config-63742be30723555ab54c7b11136dfaf6f83d0c2e.zip |
feat: add notifications widget
Diffstat (limited to '')
-rw-r--r-- | style.scss | 88 |
1 files changed, 2 insertions, 86 deletions
@@ -2,89 +2,5 @@ // $fg-color: #{"@theme_fg_color"}; // $bg-color: #{"@theme_bg_color"}; -window.Bar { - border: none; - box-shadow: none; - background-color: #000; - color: #fff; - - >box { - padding: 0; - } -} - -box.Workspaces { - padding-left: 3px; - - >button { - min-width: 10px; - min-height: 10px; - border-radius: 5px; - - border: none; - margin: 5px 2px; - padding: 0; - background: #ccc; - - transition: min-width .1s ease; - - &.active { - min-width: 25px; - } - - &.focused { - background: #AD49E1; - } - } -} - -box.Tray { - margin-right: 5px; - - button { - margin: 0; - padding: 1px; - border: none; - border-radius: 0; - min-width: 10px; - min-height: 10px; - - background: #000; - } -} - -box.AudioVolume { - margin-right: 20px; - min-width: 140px; - - image { - margin-right: 5px; - } - - scale { - margin: 0; - padding: 0; - } - - trough { - border-radius: 20px; - } - - highlight { - border-radius: 20px; - min-height: 10px; - } - - slider { - margin: 0; - min-height: 0; - min-width: 0; - opacity: 0; - } -} - - -window.Notifications { - background-color: #000; - color: #fff; -} +@use "./widget/bar/Bar"; +@use "./widget/notifications/Notifications"; |