sidebarStyled.ts 721 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. import styled from 'styled-components';
  2. export const Container = styled.div`
  3. margin-top: 60px;
  4. padding: 24px 8px;
  5. position: relative;
  6. min-height: 724px;
  7. height: calc(100% - 60px);
  8. background-color: white;
  9. `;
  10. export const Head = styled.div`
  11. display: flex;
  12. align-items: center;
  13. `;
  14. export const Body = styled.div`
  15. overflow: scroll;
  16. padding: 8px;
  17. text-align: center;
  18. position: relative;
  19. height: calc(100vh - 140px);
  20. `;
  21. export const Footer = styled.div`
  22. position: absolute;
  23. bottom: 10px;
  24. right: 25px;
  25. display: inline-flex;
  26. flex-direction: column;
  27. justify-content: center;
  28. align-items: flex-end;
  29. `;
  30. export const IconWrapper = styled.span`
  31. display: inline-flex;
  32. padding: 8px;
  33. `;