Fix at a glance position
This commit is contained in:
fraxle
2026-07-30 00:19:09 +01:00
parent 5b07b64d22
commit 79a15030ba
+12
View File
@@ -1651,6 +1651,18 @@
top: 16px; top: 16px;
} }
/* At ≥1024px the profile row + hourly table header both go sticky and pin
to the top of the viewport (see .active-profile-row / .utci-thead-sticky
in table.css, z-index 11 and 5). Left at top:16px the rail's sticky box
scrolls up underneath that stack and gets hidden behind it once it hits
the header height (~104px). Push the rail's stick point below both bars
instead so it settles under them rather than being covered. */
@media (min-width: 1024px) {
.glance-rail {
top: 104px;
}
}
.insight-panel--glance { .insight-panel--glance {
width: 100%; width: 100%;
} }