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.
35 lines (34 loc) • 1.15 kB
JavaScript
export default function () {
return {
// 'hook-notification': {},
'hook-close': {
top: null,
right: null,
'@apply right-1 top-1 p-1 text-foreground/50': {}
},
// 'hook-close-hover': {},
'hook-message': {
padding: null,
backgroundColor: null,
color: null,
fontSize: null,
lineHeight: null,
'@apply rounded-md border border-border bg-background p-4 pr-6 text-sm text-foreground shadow-lg': {}
},
// 'hook-primary': {},
// 'hook-success': {},
// 'hook-warning': {},
'hook-danger': {
color: null,
'@apply border-destructive bg-destructive text-destructive-foreground': {}
},
'hook-misc': {
'.uk-notification-message-primary': null,
'.uk-notification-message-success': null,
'.uk-notification-message-warning': null,
'.uk-notification-message-danger .uk-notification-close': {
'@apply text-destructive-foreground/50': {}
}
}
};
}