preline
Version:
Preline UI is an open-source set of prebuilt UI components based on the utility-first Tailwind CSS framework.
38 lines (29 loc) • 386 B
CSS
@custom-variant hs-combo-box-active {
&.active {
@slot;
}
.active & {
@slot;
}
}
@custom-variant hs-combo-box-has-value {
&.has-value {
@slot;
}
.has-value & {
@slot;
}
}
@custom-variant hs-combo-box-selected {
&.selected {
@slot;
}
.selected & {
@slot;
}
}
@custom-variant hs-combo-box-tab-active {
&.active {
@slot;
}
}