summaryrefslogtreecommitdiff
path: root/pkgs/astal/src/style/widget/bar.scss
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/astal/src/style/widget/bar.scss')
-rw-r--r--pkgs/astal/src/style/widget/bar.scss48
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;
+ }
+ }
+ }
+}