This commit is contained in:
2026-05-04 16:24:48 +02:00
parent 55a76be186
commit 0549437776
7 changed files with 610 additions and 60 deletions

View File

@@ -1,4 +1,6 @@
/* Custom Scrollbar Styling */
/** biome-ignore-all lint/correctness/noUnknownTypeSelector: gtk css has more valid identifiers */
scrollbar, scrollbar * {
min-width: 8px;
background: transparent;
@@ -22,7 +24,6 @@ scrollbar trough {
scrollbar button {
background: transparent;
}
/** biome-ignore-all lint/correctness/noUnknownTypeSelector: gtk css has more valid identifiers */
* {
all: unset;
}
@@ -295,4 +296,26 @@ tooltip {
.available-devices {
background-color: rgba(255, 255, 255, 0.1);
border-radius: 4px;
}
}
.current-weather-scroll {
background-color: rgba(255, 255, 255, 0.1);
border-radius: 8px;
}
.hourly-weather-scroll {
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 8px;
}
.daily-weather-scroll {
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 8px;
}
.weather-info {
padding: 4px 8px;
border-radius: 4px;
background-color: rgba(255, 255, 255, 0.1);
}