Skip to content

Commit

Permalink
fix(input text): fix css
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerard Brull committed May 22, 2020
1 parent c067e99 commit 05400c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/atoms/InputText/InputText.tsx
Expand Up @@ -13,7 +13,7 @@ const Input = styled.input<InputProps>`
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;
Expand All @@ -33,7 +33,7 @@ const Input = styled.input<InputProps>`
&:disabled {
background-color: ${colors.greyLightest};
color: ${colors.grey}
color: ${colors.grey};
}
`;

Expand Down

0 comments on commit 05400c9

Please sign in to comment.