UNPKG

@kelvininc/ui-components

Version:
77 lines (76 loc) 2 kB
/** HEADINGS **/ /** LABELS **/ /** SPANS **/ /** PARAGRAPHS **/ /** CODE/CONSOLE **/ @property --rotation { syntax: "<angle>"; initial-value: 0deg; inherits: false; } @keyframes rotate-border { to { --rotation: 360deg; } } /** * @prop --text-color: The color to use for all text * @prop --separator-color: The color to use for the separator * @prop --container-padding: The container to use for the container */ :host { --text-color: var(--kv-neutral-1, #f2f2f6); --separator-color: var(--kv-neutral-2, #e5e5e5); --container-padding: var(--kv-spacing-4x, 16px); } .wizard-header-container { display: flex; padding: var(--container-padding); justify-content: space-between; } .wizard-header-container .left-container { display: flex; align-items: center; flex: 1; } .wizard-header-container .left-container .label, .wizard-header-container .left-container .description { color: var(--text-color); } .wizard-header-container .left-container .label { font-family: var(--kv-primary-font, "proxima-nova", sans-serif, "Arial"); font-size: 12px; font-weight: 600; font-stretch: normal; font-style: normal; line-height: 18px; letter-spacing: normal; letter-spacing: 1.5px; text-transform: uppercase; } .wizard-header-container .left-container .description { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-family: var(--kv-primary-font, "proxima-nova", sans-serif, "Arial"); font-size: 14px; font-weight: 300; font-stretch: normal; font-style: normal; line-height: 21px; letter-spacing: normal; text-transform: none; } .wizard-header-container .left-container .separator { width: 4px; height: 4px; border-radius: 50%; margin: 0 var(--kv-spacing-2x, 8px); background-color: var(--separator-color); } .wizard-header-container .left-container kv-toggle-tip .toggle-tip-open-element-container { cursor: pointer; user-select: none; pointer-events: all; margin-left: var(--kv-spacing-2x, 8px); }