Files
opencode/packages/ui/src/components/sticky-accordion-header.css
opencode-agent[bot] fe66ca163c chore: generate
2026-01-30 17:58:31 +00: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);
}
}
}