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.
22 lines (21 loc) • 649 B
JavaScript
export default {
'.uk-slidenav': {
boxShadow: 'var(--uk-global-shadow-s)',
'@apply inline-flex h-9 w-9 items-center justify-center rounded-full border border-input bg-background focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring': {}
},
'.uk-slidenav:hover': {
'@apply bg-accent text-accent-foreground': {}
},
'.uk-slidenav:active': {
'@apply bg-accent text-accent-foreground': {}
},
'.uk-slidenav-lg': {
padding: '10px 10px'
},
'.uk-slidenav-container': {
display: 'flex'
},
'.uk-slidenav svg': {
'@apply h-4 w-4': {}
}
};