fix: style battery widget

This commit is contained in:
2025-12-18 10:19:25 -08:00
parent d8b4e953c5
commit 0d8f89ce48
2 changed files with 7 additions and 2 deletions

View File

@@ -53,6 +53,11 @@ window.Bar {
border-bottom: 4px solid #2ac3de; border-bottom: 4px solid #2ac3de;
} }
.battery {
color: #b4f9f8;
border-bottom: 4px solid #b4f9f8;
}
.date-popover { .date-popover {
all: unset; all: unset;

View File

@@ -14,10 +14,10 @@ export default function Battery() {
return ( return (
<> <>
<box class="status-box"> <box class="status-box battery">
<label label={battery_info} /> <label label={battery_info} />
</box> </box>
<Gtk.Separator /> <Gtk.Separator class="separator" />
</> </>
) )
} }