* stretch email login input * Update InputLarge.js Co-authored-by: Tom Moor <tom.moor@gmail.com>
16 lines
230 B
JavaScript
16 lines
230 B
JavaScript
// @flow
|
|
import styled from "styled-components";
|
|
import Input from "./Input";
|
|
|
|
const InputLarge = styled(Input)`
|
|
height: 38px;
|
|
flex-grow: 1;
|
|
margin-right: 8px;
|
|
|
|
input {
|
|
height: 38px;
|
|
}
|
|
`;
|
|
|
|
export default InputLarge;
|