Components: FieldContainer: add error padding

This commit is contained in:
Viktor Fomin 2023-01-26 18:05:46 +03:00
parent 5ab18f30c3
commit 03ebc5cf7d

View File

@ -73,6 +73,7 @@ const Container = styled.div`
max-width: ${(props) => (props.maxwidth ? props.maxwidth : "293px")};
color: ${(props) =>
props.color ? props.color : props.theme.fieldContainer.errorLabel.color};
padding-top: 4px;
}
${(props) =>
props.vertical ? getVerticalCss() : getHorizontalCss(props.maxLabelWidth)}