UNPKG

franken-ui

Version:

Franken UI is an HTML-first, open-source library of UI components based on the utility-first Tailwind CSS with UIkit 3 compatibility. The design is based on shadcn/ui ported to be framework-agnostic.

52 lines (51 loc) 1.39 kB
export default { "[class*='uk-divider']": { border: 'none', height: '1px' }, '.uk-divider-icon': { position: 'relative', height: '1.25rem', backgroundImage: 'var(--uk-divider-icon-image)', backgroundRepeat: 'no-repeat', backgroundPosition: '50% 50%' }, '.uk-divider-icon::before, .uk-divider-icon::after': { content: "''", position: 'absolute', top: '50%', maxWidth: 'calc(50% - (3.5rem / 2))', borderBottom: '1px solid', '@apply border-border': {} }, '.uk-divider-icon::before': { right: 'calc(50% + (3.5rem / 2))', width: '100%' }, '.uk-divider-icon::after': { left: 'calc(50% + (3.5rem / 2))', width: '100%' }, '.uk-divider-sm': { lineHeight: '0' }, '.uk-divider-sm::after': { content: "''", display: 'inline-block', width: '100px', maxWidth: '100%', borderTop: '1px solid #e5e5e5', verticalAlign: 'top', borderBottom: '1px solid', '@apply border-border': {} }, '.uk-divider-vertical': { width: 'max-content', height: '100px', marginLeft: 'auto', marginRight: 'auto', borderLeft: '1px solid #e5e5e5', borderBottom: '1px solid', '@apply border-border': {} } };