first commit

This commit is contained in:
2024-04-03 10:16:39 +05:45
commit 3e3eac1db4
545 changed files with 841810 additions and 0 deletions

View File

@ -0,0 +1,37 @@
export default {
root: ({ context, props }) => ({
class: [
// Position
'absolute',
// Spacing
{
'px-1.5': context?.right || context?.left || (!context?.right && !context?.left && !context?.top && !context?.bottom),
'py-1.5': context?.top || context?.bottom
}
]
}),
arrow: {
class: 'hidden'
},
text: {
class: [
// Size
'text-xs leading-none',
// Spacing
'p-2',
// Shape
'rounded-md',
// Color
'text-surface-900 dark:text-surface-0/80',
'bg-surface-0 dark:bg-surface-900',
'ring-1 ring-inset ring-surface-200 dark:ring-surface-800 ring-offset-0',
// Misc
'whitespace-pre-line',
'break-words'
]
}
};