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.
41 lines (40 loc) • 1.14 kB
TypeScript
declare const _default: {
'.uk-card': {
position: string;
boxSizing: string;
borderRadius: string;
boxShadow: string;
'@apply border border-border bg-card text-card-foreground': {};
};
'.uk-card-body': {
padding: string;
};
'.uk-card-header': {
padding: string;
};
'.uk-card-footer': {
padding: string;
};
'.uk-card-body > :last-child, .uk-card-header > :last-child, .uk-card-footer > :last-child': {
marginBottom: string;
};
'.uk-card-title': {
'@apply text-lg font-semibold leading-none tracking-tight': {};
};
'.uk-card-primary': {
'@apply bg-primary text-primary-foreground': {};
};
'.uk-card-secondary': {
'@apply bg-secondary text-secondary-foreground': {};
};
'.uk-card-destructive': {
'@apply bg-destructive text-destructive-foreground': {};
};
'.uk-card-header + .uk-card-body, .uk-card-body + .uk-card-footer': {
'@apply pt-0': {};
};
'.uk-card-header ~ .uk-card-footer': {
'@apply pt-0': {};
};
};
export default _default;