@kelvininc/ui-components
Version:
Kelvin UI Components
31 lines (30 loc) • 697 B
CSS
/** HEADINGS **/
/** LABELS **/
/** SPANS **/
/** PARAGRAPHS **/
/** CODE/CONSOLE **/
@property --rotation {
syntax: "<angle>";
initial-value: 0deg;
inherits: false;
}
@keyframes rotate-border {
to {
--rotation: 360deg;
}
}
:host {
/**
* @prop --dropdown-max-height: Dropdown list maximum height.
* @prop --dropdown-min-height: Dropdown list minimum height.
* @prop --dropdown-max-width: Dropdown list maximum width.
* @prop --dropdown-min-width: Dropdown list minimum width.
*/
--dropdown-max-height: 400px;
--dropdown-min-height: auto;
--dropdown-max-width: auto;
--dropdown-min-width: max-content;
}
kv-dropdown[disabled=true] {
pointer-events: none;
}