@kelvininc/ui-components
Version:
Kelvin UI Components
39 lines (37 loc) • 779 B
CSS
/** HEADINGS **/
/** LABELS **/
/** SPANS **/
/** PARAGRAPHS **/
/** TODO: CODE/CONSOLE **/
@property --rotation {
syntax: "<angle>";
initial-value: 0deg;
inherits: false;
}
@keyframes rotate-border {
to {
--rotation: 360deg;
}
}
/**
* Design Tokens - Auto-generated by Style Dictionary
* Do not edit manually - run `pnpm tokens:build` to regenerate
*/
kv-dropdown-base:not(.hydrated) > [slot=list] {
display: none;
}
:host {
/**
* @prop --dot-color: DirtyDot's color.
* @prop --dot-height: DirtyDot's height.
* @prop --dot-width: DirtyDot's width.
*/
--dot-color: var(--color-purple-500);
--dot-height: 6px;
--dot-width: 6px;
}
.dot {
--icon-color: var(--dot-color);
--icon-height: var(--dot-height);
--icon-width: var(--dot-width);
}