@helpwave/hightide
Version:
helpwave's component and theming library
26 lines (20 loc) • 506 B
CSS
@layer components {
[data-name="combobox-root"] {
@apply flex-col-2;
}
[data-name="combobox-input"] {
@apply input-element rounded-md;
}
[data-name="combobox-list"] {
@apply flex-col-1 overflow-y-auto;
}
[data-name="combobox-option"] {
@apply flex-row-1 items-center px-2 py-1 rounded-md cursor-pointer;
&[data-highlighted] {
@apply bg-primary/20;
}
}
[data-name="combobox-list-status"] {
@apply text-description text-sm px-2 py-1 rounded-md;
}
}