ChatEditorModal.style.js 281 B

1234567891011121314
  1. import styled from "styled-components";
  2. export const ChatEditorModalWrapper = styled.div`
  3. padding: 10px;
  4. &>div:nth-child(1){
  5. display: flex;
  6. justify-content: space-between;
  7. margin: 20px 10px 10px;
  8. }
  9. &>div:nth-child(2){
  10. display: flex;
  11. justify-content: end;
  12. }
  13. `;