mirror of
https://github.com/strapi/strapi.git
synced 2025-08-15 20:27:23 +00:00
14 lines
237 B
JavaScript
14 lines
237 B
JavaScript
![]() |
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;
|