From 94812836514e4d2602fba25908ee0e55f1427a56 Mon Sep 17 00:00:00 2001 From: TheoryOfNekomata Date: Wed, 7 Apr 2021 00:15:06 +0800 Subject: [PATCH] Apply TextInput styling Forgot to put this change in last commit. --- src/components/molecules/TextInput/index.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/molecules/TextInput/index.tsx b/src/components/molecules/TextInput/index.tsx index 6452ccf..2c12aad 100644 --- a/src/components/molecules/TextInput/index.tsx +++ b/src/components/molecules/TextInput/index.tsx @@ -3,6 +3,8 @@ import styled from 'styled-components' const Base = styled('input')({ height: '2.5rem', border: '0.125rem solid', + borderRadius: '0.25rem', + outline: 0, backgroundColor: 'var(--color-bg, white)', color: 'var(--color-fg, black)', font: 'inherit',