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.
24 lines (23 loc) • 504 B
JavaScript
export default {
'.uk-sortable': {
position: 'relative'
},
'.uk-sortable > :last-child': {
marginBottom: '0'
},
'.uk-sortable-drag': {
position: 'fixed !important',
zIndex: '1050 !important',
pointerEvents: 'none'
},
'.uk-sortable-placeholder': {
opacity: '0',
pointerEvents: 'none'
},
'.uk-sortable-empty': {
minHeight: '3.5rem'
},
'.uk-sortable-handle:hover': {
cursor: 'move'
}
};