UNPKG

@kelvininc/ui-components

Version:
70 lines (65 loc) 1.55 kB
/** 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 --image-width: The illustration image width. * @prop --image-height: The illustration image height. * @prop --header-color: The illustration header text color. * @prop --description-color: The illustration description text color. */ --image-width: 60px; --image-height: auto; --header-color: var(--text-surface-neutral-secondary); --description-color: var(--text-surface-neutral-tertiary); } .illustration-message { display: flex; flex-direction: column; justify-content: center; align-items: center; } .image { margin-bottom: var(--spacing-xl); --illustration-width: var(--image-width); --illustration-height: var(--image-height); } .header { color: var(--header-color); text-align: center; font-family: Proxima Nova; font-weight: 600; font-size: 14px; line-height: 20px; letter-spacing: 0; } .description { color: var(--description-color); text-align: center; font-family: Proxima Nova; font-weight: 400; font-size: 12px; line-height: 16px; letter-spacing: 0; white-space: break-spaces; margin-top: var(--spacing-xs); }