fix(Input/Textarea): remove useless gap

This commit is contained in:
Benjamin Canac
2024-04-29 11:21:38 +02:00
parent 2363b0a4f1
commit 67a15686e5
5 changed files with 81 additions and 81 deletions

View File

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