From 05400c94f3d4bfe47fba9a76545d693cac1d3347 Mon Sep 17 00:00:00 2001 From: Gerard Brull Date: Fri, 22 May 2020 13:35:12 +0200 Subject: [PATCH] fix(input text): fix css --- src/components/atoms/InputText/InputText.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/atoms/InputText/InputText.tsx b/src/components/atoms/InputText/InputText.tsx index 2d788b428..3e0504c5a 100644 --- a/src/components/atoms/InputText/InputText.tsx +++ b/src/components/atoms/InputText/InputText.tsx @@ -13,7 +13,7 @@ const Input = styled.input` height: 50px; font-size: ${typography.sizes.text.body}; font-weight: ${typography.weights.regular}; - color: ${colors.greyDarkest} + color: ${colors.greyDarkest}; border: 1px solid ${getBorderColorByStatus}; box-shadow: 0 0 4px 0 transparent; transition-property: border, box-shadow; @@ -33,7 +33,7 @@ const Input = styled.input` &:disabled { background-color: ${colors.greyLightest}; - color: ${colors.grey} + color: ${colors.grey}; } `;