mirror of
https://github.com/strapi/strapi.git
synced 2025-09-26 00:39:49 +00:00
28 lines
416 B
JavaScript
28 lines
416 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const Wrapper = styled.div`
|
|
display: flex;
|
|
overflow-x: hidden;
|
|
height: 100vh;
|
|
p,
|
|
span {
|
|
font-family: Lato;
|
|
}
|
|
|
|
.adminPageRightWrapper {
|
|
width: ${props => `calc(100% - ${props.theme.main.sizes.leftMenu.width})`};
|
|
}
|
|
`;
|
|
|
|
Wrapper.defaultProps = {
|
|
theme: {
|
|
main: {
|
|
sizes: {
|
|
leftMenu: {},
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
export default Wrapper;
|