12345678910111213141516 |
- import styled from 'styled-components';
- export const Separator = styled.div`
- flex: 1 1 auto;
- `;
- export const SidebarWrapper = styled.div`
- position: fixed;
- top: 60px;
- left: 0;
- bottom: 0;
- right: auto;
- width: 267px;
- box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.24);
- background-color: white;
- `;
|