SendMessage.styled.tsx 685 B

123456789101112131415161718192021222324252627282930313233343536
  1. import styled from 'styled-components';
  2. export const Wrapper = styled.div`
  3. display: block;
  4. border-radius: 6px;
  5. `;
  6. export const Columns = styled.div`
  7. margin: -0.75rem;
  8. margin-bottom: 0.75rem;
  9. display: flex;
  10. flex-direction: column;
  11. padding: 0.75rem;
  12. gap: 8px;
  13. @media screen and (min-width: 769px) {
  14. display: flex;
  15. }
  16. `;
  17. export const Flex = styled.div`
  18. display: flex;
  19. flex-direction: row;
  20. gap: 8px;
  21. @media screen and (max-width: 1200px) {
  22. flex-direction: column;
  23. }
  24. `;
  25. export const FlexItem = styled.div`
  26. width: 18rem;
  27. @media screen and (max-width: 1450px) {
  28. width: 50%;
  29. }
  30. @media screen and (max-width: 1200px) {
  31. width: 100%;
  32. }
  33. `;