13 lines
213 B
JavaScript
Raw Normal View History

2019-09-17 17:19:10 +02:00
import styled from 'styled-components';
const Wrapper = styled.div`
display: flex;
overflow-x: hidden;
.adminPageRightWrapper {
width: calc(100% - #{$left-menu-width});
}
`;
export default Wrapper;