From f8d8ff02d13b72fa9198ea5f203d228da4e050b6 Mon Sep 17 00:00:00 2001 From: slowbackspace Date: Thu, 17 Jan 2019 17:20:16 +0100 Subject: [PATCH] add missing margin-top to textarea's error message --- src/components/Textarea/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Textarea/index.js b/src/components/Textarea/index.js index b0dbad2c..1566b416 100644 --- a/src/components/Textarea/index.js +++ b/src/components/Textarea/index.js @@ -109,6 +109,7 @@ const TopLabel = styled.span` `; const BottomText = styled.span` + margin-top: 10px; font-size: ${FONT_SIZE.SMALL}; color: ${props => (props.color ? props.color : colors.TEXT_SECONDARY)}; `;