MessageMediaModal.style.js 524 B

12345678910111213141516171819202122232425262728293031
  1. import styled from 'styled-components'
  2. export const MessageMediaModalWrapper = styled.div`
  3. width: 100%;
  4. height: 100%;
  5. padding: 30px 30px 20px;
  6. `;
  7. export const MediaBox = styled.div`
  8. `;
  9. export const MediaModalHeader = styled.h3`
  10. margin: 0 0 20px;
  11. font-weight: 600;
  12. `;
  13. export const MessageMediaFooter = styled.div`
  14. margin-top: 20px;
  15. display: flex;
  16. justify-content: space-between;
  17. `;
  18. export const DropMediaList = styled.ul`
  19. list-style-type: none;
  20. padding: 0;
  21. margin: 0;
  22. display: flex;
  23. flex-wrap: wrap;
  24. `;