ad-aures_castoPod/resources/styles/_modules/stickyHeader.css
Yassine Doghri 0961987276
fix(player): load icons locally instead of relying on vimejs picking them from third party scripts
- use codeigniter-vite to manage static resources
- update dependencies to latest

closes #551
2026-02-18 22:40:18 +01:00

24 lines
576 B
CSS

:root {
--sticky-header-outer-height: 180px;
--sticky-header-inner-height: 84px;
--sticky-header-height-difference: calc(
var(--sticky-header-outer-height) - var(--sticky-header-inner-height)
);
}
/* Sticky header */
.sticky-header-outer {
/* Make it stick */
height: var(--sticky-header-outer-height);
position: sticky;
top: calc(
var(--sticky-header-height-difference) * -1
); /* Multiply by -1 to get a negative value */
}
.sticky-header-inner {
/* Make it stick */
height: var(--sticky-header-inner-height);
position: sticky;
top: 0;
}