sidebarStyled.ts 690 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. 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. `;
  20. export const Footer = styled.div`
  21. position: absolute;
  22. bottom: 10px;
  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. `;