aboutsummaryrefslogtreecommitdiffstats
path: root/src/components
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2021-01-18 17:07:00 +0200
committerGravatar ks129 <[email protected]>2021-01-18 17:07:00 +0200
commitb62d0907dafba6f662c33a061ed9e5397b3f4ffc (patch)
treef47067151d5d32c8898c6621d8874dc1db8a8d15 /src/components
parentRelay blur handler to specific component and cleanup (diff)
Change ErrorMessage CSS properties
Diffstat (limited to 'src/components')
-rw-r--r--src/components/ErrorMessage.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/ErrorMessage.tsx b/src/components/ErrorMessage.tsx
index f807817..55e3759 100644
--- a/src/components/ErrorMessage.tsx
+++ b/src/components/ErrorMessage.tsx
@@ -9,9 +9,9 @@ interface ErrorMessageProps {
const styles = css`
color: ${colors.error};
- font-size: 20px;
+ font-size: 18px;
line-height: 15px;
- margin: 10px 0 0;
+ margin: 15px 0 0;
`;
export default function ErrorMessage(props: ErrorMessageProps): JSX.Element|null {