otherStyled.ts 306 B

12345678910111213141516
  1. import styled from 'styled-components';
  2. export const Separator = styled.div`
  3. flex: 1 1 auto;
  4. `;
  5. export const SidebarWrapper = styled.div`
  6. position: fixed;
  7. top: 60px;
  8. left: 0;
  9. bottom: 0;
  10. right: auto;
  11. width: 267px;
  12. box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.24);
  13. background-color: white;
  14. `;