diff options
author | Freya Murphy <freya@freyacat.org> | 2025-06-17 15:14:45 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-06-17 15:14:45 -0400 |
commit | 1173df26fd78fdd59679645004847237ed7a0a54 (patch) | |
tree | b75e6bd3ee1a878b1a3e74d94fb9ea0bb94c14a7 /pkgs/astal/src/style/widget/bar.scss | |
parent | add upowerd (diff) | |
download | dotfiles-nix-1173df26fd78fdd59679645004847237ed7a0a54.tar.gz dotfiles-nix-1173df26fd78fdd59679645004847237ed7a0a54.tar.bz2 dotfiles-nix-1173df26fd78fdd59679645004847237ed7a0a54.zip |
add astal package, update flake to support packages
Diffstat (limited to 'pkgs/astal/src/style/widget/bar.scss')
-rw-r--r-- | pkgs/astal/src/style/widget/bar.scss | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/pkgs/astal/src/style/widget/bar.scss b/pkgs/astal/src/style/widget/bar.scss new file mode 100644 index 0000000..01e73ce --- /dev/null +++ b/pkgs/astal/src/style/widget/bar.scss @@ -0,0 +1,48 @@ + +.bar { + background: $bg; + + .workspaces { + margin: $inner-gap $outer-gap; + + .workspace { + margin: $inner-gap; + border-radius: $inner-radius; + min-width: $font-size + $outer-gap; + min-height: $font-size + $outer-gap; + font-weight: bold; + } + } + + .right { + margin: $inner-gap $outer-gap; + + .wifi, + .audio, + .battery, + .tray { + margin: $inner-gap $outer-gap; + margin-right: 0px; + background: $surface-bg; + border-radius: $inner-radius; + padding: 0px $outer-gap; + + icon { + margin-right: $inner-gap; + } + + } + + .tray { + padding-right: 0; + + icon { + margin-right: $outer-gap; + } + + .menubtn:hover { + background: transparent; + } + } + } +} |