Files
opencode/packages/ui/src/components/sticky-accordion-header.css
2026-02-04 10:35:11 -06:00

19 lines
525 B
CSS

[data-component="sticky-accordion-header"] {
position: sticky;
top: 0px;
}
[data-component="sticky-accordion-header"][data-expanded],
[data-slot="accordion-item"][data-expanded] [data-component="sticky-accordion-header"] {
z-index: 10;
}
[data-component="sticky-accordion-header"][data-expanded]::before,
[data-slot="accordion-item"][data-expanded] [data-component="sticky-accordion-header"]::before {
content: "";
z-index: -10;
position: absolute;
inset: 0;
background-color: var(--background-stronger);
}