Files
opencode/packages/ui/src/components/sticky-accordion-header.css
T
2025-11-21 20:41:27 -05:00

17 lines
278 B
CSS

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