16 lines
290 B
JavaScript
Raw Normal View History

import styled from 'styled-components';
const FormWrapper = styled.div`
2019-11-18 18:14:36 +01:00
padding: 22px 10px 0 10px;
background: #ffffff;
border-radius: 2px;
box-shadow: 0 2px 4px #e3e9f3;
2019-11-26 16:15:59 +01:00
margin-bottom: 14px;
> div {
margin-right: 0;
margin-left: 0;
}
`;
export default FormWrapper;