mirror of
https://github.com/strapi/strapi.git
synced 2025-08-08 08:46:42 +00:00
21 lines
353 B
JavaScript
21 lines
353 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const FormWrapper = styled.div`
|
|
padding: 22px 10px 0 10px;
|
|
background: #ffffff;
|
|
border-radius: 2px;
|
|
box-shadow: 0 2px 4px #e3e9f3;
|
|
margin-bottom: 3px;
|
|
> div {
|
|
margin-right: 0;
|
|
margin-left: 0;
|
|
}
|
|
.row {
|
|
&:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default FormWrapper;
|