InputArea.style.js 651 B

12345678910111213141516171819202122232425262728293031
  1. import styled from "styled-components";
  2. import TextareaAutosize from 'react-textarea-autosize';
  3. export const InputAreaWrapper = styled.div`
  4. width: 100%;
  5. background-color: #fff;
  6. // border-top: 1px solid #e9e9e9;
  7. // display: flex;
  8. // align-items: center;
  9. img{
  10. margin: 0 20px;
  11. cursor: pointer;
  12. }
  13. `;
  14. export const TextArea = styled(TextareaAutosize)`
  15. display: block;
  16. border: 0.1px solid #fff;
  17. padding: 0;
  18. width: 100%;
  19. resize: none;
  20. font-style: normal;
  21. font-weight: 400;
  22. font-size: 16px;
  23. line-height: 22px;
  24. height: 24px;
  25. overflow: hidden;
  26. outline: none;
  27. `;