mirror of
https://github.com/strapi/strapi.git
synced 2025-08-14 11:48:43 +00:00
14 lines
244 B
JavaScript
14 lines
244 B
JavaScript
import styled from 'styled-components';
|
|
import ContainerFluid from '../ContainerFluid';
|
|
|
|
const Wrapper = styled(ContainerFluid)`
|
|
margin-bottom: 0.3rem;
|
|
padding-top: 2.3rem;
|
|
|
|
textarea {
|
|
height: 10.1rem;
|
|
}
|
|
`;
|
|
|
|
export default Wrapper;
|