mirror of
https://github.com/strapi/strapi.git
synced 2025-12-16 17:53:53 +00:00
11 lines
181 B
JavaScript
11 lines
181 B
JavaScript
|
|
import styled from 'styled-components';
|
||
|
|
|
||
|
|
const Wrapper = styled.div`
|
||
|
|
padding: 18px 30px !important;
|
||
|
|
> div:first-child {
|
||
|
|
margin-bottom: 11px;
|
||
|
|
}
|
||
|
|
`;
|
||
|
|
|
||
|
|
export default Wrapper;
|