Stop side panels from stretching to center panel height

This commit is contained in:
2026-07-27 12:26:51 -04:00
parent c3f8738f00
commit 5ecbcdf55b
+2 -2
View File
@@ -361,7 +361,7 @@ function WeatherCard() {
function LeftPanel() { function LeftPanel() {
return ( return (
<box class="qs-side-panel" vertical spacing={12}> <box class="qs-side-panel" vertical spacing={12} valign={Gtk.Align.START}>
<WeatherCard /> <WeatherCard />
</box> </box>
) )
@@ -369,7 +369,7 @@ function LeftPanel() {
function RightPanel() { function RightPanel() {
return ( return (
<box class="qs-side-panel" vertical spacing={12}> <box class="qs-side-panel" vertical spacing={12} valign={Gtk.Align.START}>
<ClaudeUsageCard /> <ClaudeUsageCard />
</box> </box>
) )