[m] Minor css fix

This commit is contained in:
soraefir 2023-12-27 10:06:13 +01:00
parent 22c036b26e
commit 83bab9b2b7
Signed by: sora
GPG Key ID: A362EA0491E2EEA0
2 changed files with 29 additions and 13 deletions

View File

@ -59,11 +59,11 @@ color: $base0B;
// @include window; // @include window;
// background-color: $bg1; // background-color: $bg1;
// color: $fg; // color: $fg;
// margin: $gaps-screen; // margin: $gaps-win;
// padding: .5em; padding: 5pt;
} }
.sys-label { .sys-label {
font-weight: bolder; font-weight: bolder;
color: $base04; color: $base04;
} }

View File

@ -101,14 +101,30 @@
(box (box
:class "sys-win" :class "sys-win"
:space-evenly false :space-evenly false
:orientation "v" :orientation "h"
(cpu-sys-win) (box
(box :class "spacer") :space-evenly false
(box :class "spacer") :orientation "v"
(gpu-sys-win) (cpu-sys-win)
(box :class "spacer") (box :class "spacer")
(box :class "spacer") (box :class "spacer")
(ram-sys-win) (gpu-sys-win)
(box :class "spacer")
(box :class "spacer")
(ram-sys-win)
)
(box
:visible {battery.visible}
:height 200
(graph
:height 200
:value {battery.percentage}
:time-range "30min"
:min "0.0"
:max "100.0"
:dynamic true
)
)
) )
) )