sidebarStyled.ts 698 B

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