mirror of
https://github.com/strapi/strapi.git
synced 2025-12-12 23:44:08 +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;
|