14 lines
237 B
JavaScript
Raw Normal View History

import styled from 'styled-components';
import ContainerFluid from '../ContainerFluid';
const Wrapper = styled(ContainerFluid)`
margin-bottom: 3px;
padding-top: 23px;
textarea {
height: 101px;
}
`;
export default Wrapper;