fix(Textarea): same size as input

This commit is contained in:
Benjamin Canac
2024-05-06 22:03:38 +02:00
parent 15cb9a023d
commit e398637174
2 changed files with 26 additions and 26 deletions

View File

@@ -6,19 +6,19 @@ export default (config: { colors: string[] }) => ({
variants: {
size: {
xs: {
base: 'text-xs px-2 py-1'
base: 'px-2 py-1 text-xs'
},
sm: {
base: 'text-sm px-2.5 py-1'
base: 'px-2.5 py-1.5 text-xs'
},
md: {
base: 'text-sm px-2.5 py-1.5'
base: 'px-2.5 py-1.5 text-sm'
},
lg: {
base: 'text-sm px-3 py-2'
base: 'px-3 py-2 text-sm'
},
xl: {
base: 'text-sm px-3.5 py-2.5'
base: 'px-3 py-2 text-base'
}
},
variant: {