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