first commit
This commit is contained in:
38
resources/css/presets/aura/textarea/index.js
Normal file
38
resources/css/presets/aura/textarea/index.js
Normal file
@ -0,0 +1,38 @@
|
||||
export default {
|
||||
root: ({ context, props }) => ({
|
||||
class: [
|
||||
// Font
|
||||
'font-sans leading-6',
|
||||
'sm:text-sm',
|
||||
|
||||
// Spacing
|
||||
'm-0',
|
||||
'py-1.5 px-3',
|
||||
|
||||
// Shape
|
||||
'rounded-md',
|
||||
'appearance-none',
|
||||
|
||||
// Colors
|
||||
'text-surface-900 dark:text-surface-0',
|
||||
'placeholder:text-surface-400 dark:placeholder:text-surface-500',
|
||||
'bg-surface-0 dark:bg-surface-900',
|
||||
'ring-1 ring-inset ring-offset-0',
|
||||
'shadow-sm',
|
||||
{ ' ring-surface-300 dark:ring-surface-700': !props.invalid },
|
||||
|
||||
// Invalid State
|
||||
{ 'ring-red-500 dark:ring-red-400': props.invalid },
|
||||
|
||||
// States
|
||||
{
|
||||
'outline-none focus:ring-primary-500 dark:focus:ring-primary-400': !context.disabled,
|
||||
'opacity-60 select-none pointer-events-none cursor-default': context.disabled
|
||||
},
|
||||
|
||||
// Misc
|
||||
'appearance-none',
|
||||
'transition-colors duration-200'
|
||||
]
|
||||
})
|
||||
};
|
Reference in New Issue
Block a user