1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-15 01:28:30 +00:00

Small frontend fixes

This commit is contained in:
Bram Wiepjes 2024-07-09 16:38:10 +02:00
parent 0b2caf1f67
commit 03320a8ccd
3 changed files with 8 additions and 2 deletions
web-frontend
modules/core
assets/scss/components
components
stories

View file

@ -28,7 +28,7 @@
}
&.form-input--error {
color: $palette-red-600;
border-color: $palette-red-600;
}
&.form-input--disabled {

View file

@ -10,7 +10,6 @@
'form-input--disabled': disabled,
'form-input--small': size === 'small',
'form-input--large': size === 'large',
'form-input--loading': loading,
'form-input--suffix': hasSuffixSlot,
'form-input--no-controls': removeNumberInputControls,
}"

View file

@ -67,6 +67,13 @@ import FormTextarea from '@baserow/modules/core/components/FormTextarea'
},
defaultValue: null,
},
size: {
control: {
type: 'select',
options: ['small', 'regular'],
},
defaultValue: 'regular',
},
}}
/>