mirror of
https://github.com/strapi/strapi.git
synced 2025-12-15 17:22:57 +00:00
11 lines
222 B
JavaScript
11 lines
222 B
JavaScript
import styled from 'styled-components';
|
|
import ContainerFluid from '../../components/ContainerFluid';
|
|
|
|
const Wrapper = styled(ContainerFluid)`
|
|
> div:first-child {
|
|
margin-bottom: 11px;
|
|
}
|
|
`;
|
|
|
|
export default Wrapper;
|