From 0e54302d75269679ff1a77ed0ef16ffd1b326588 Mon Sep 17 00:00:00 2001 From: Nilay Sharma Date: Sun, 4 Apr 2021 22:27:44 +0530 Subject: [PATCH] stretch email login input (#2004) * stretch email login input * Update InputLarge.js Co-authored-by: Tom Moor --- app/components/InputLarge.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/components/InputLarge.js b/app/components/InputLarge.js index 9df392c0a..68fc10333 100644 --- a/app/components/InputLarge.js +++ b/app/components/InputLarge.js @@ -3,10 +3,12 @@ import styled from "styled-components"; import Input from "./Input"; const InputLarge = styled(Input)` - height: 40px; + height: 38px; + flex-grow: 1; + margin-right: 8px; input { - height: 40px; + height: 38px; } `;