mirror of
https://github.com/strapi/strapi.git
synced 2025-08-08 00:37:38 +00:00
27 lines
527 B
JavaScript
27 lines
527 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const Separator = styled.div`
|
|
box-sizing: border-box;
|
|
height: 1px;
|
|
width: 100%;
|
|
margin-top: 1.4rem;
|
|
margin-bottom: 2.1rem;
|
|
background: #f6f6f6;
|
|
`;
|
|
|
|
const Wrapper = styled.div`
|
|
background: #ffffff;
|
|
padding: 45px 30px 22px 30px;
|
|
border-radius: 2px;
|
|
box-shadow: 0 2px 4px #e3e9f3;
|
|
&.load-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-around;
|
|
min-height: 209px;
|
|
padding-top: 88px;
|
|
}
|
|
`;
|
|
|
|
export { Separator, Wrapper };
|