Skip to content

Commit

Permalink
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/components/VFlex/VFlex.tsx
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@ const InternalVFlex: React.FC<VFlexProps> = ({
}) => (
<Flex
{...flexProps}
alignItems={alignItems || childrenFitFullWidth ? 'stretch' : 'flex-start'}
alignItems={alignItems || (childrenFitFullWidth ? 'stretch' : 'flex-start')}
childrenFlex={childrenFlex || (childrenFitFullHeight ? '1' : undefined)}
flexDirection="column"
justifyContent={justifyContent}

0 comments on commit 14e006a

Please sign in to comment.