feat(ui): fix control adapters styling

This commit is contained in:
psychedelicious
2023-12-29 12:06:01 +11:00
committed by Kent Keirsey
parent 37786a26a5
commit ccbbb417f9
6 changed files with 35 additions and 26 deletions

View File

@@ -14,8 +14,7 @@ const formBaseStyle = definePartsStyle((props) => {
display: 'flex',
flexDirection: props.orientation === 'vertical' ? 'column' : 'row',
alignItems: props.orientation === 'vertical' ? 'flex-start' : 'center',
gap: 4,
// h: props.orientation === 'vertical' ? 'unset' : 8,
gap: props.orientation === 'vertical' ? 2 : 4,
},
};
});