mirror of
https://github.com/strapi/strapi.git
synced 2025-09-28 01:40:11 +00:00
13 lines
213 B
JavaScript
13 lines
213 B
JavaScript
![]() |
import styled from 'styled-components';
|
||
|
|
||
|
const Wrapper = styled.div`
|
||
|
display: flex;
|
||
|
overflow-x: hidden;
|
||
|
|
||
|
.adminPageRightWrapper {
|
||
|
width: calc(100% - #{$left-menu-width});
|
||
|
}
|
||
|
`;
|
||
|
|
||
|
export default Wrapper;
|