UNPKG

313 BJavaScriptView Raw
1import styled from 'styled-components';
2
3const Form = styled.div`
4 display: flex;
5 flex-direction: row;
6 flex-wrap: wrap;
7`;
8
9export const FormFields = styled.div`
10 flex: 1 0 30%;
11 margin: auto;
12 padding-right: 30px;
13 padding-left: 10px;
14 padding-top: 5px;
15 padding-bottom: 5px;
16`;
17
18export default Form;