styled.ts 365 B

12345678910111213141516171819
  1. import styled from 'styled-components';
  2. import { color } from '../../constants/style';
  3. export const TextWrapper = styled.div`
  4. text-align: left;
  5. user-select: none;
  6. line-height: 1;
  7. `;
  8. export const Input = styled.input`
  9. border: 1px solid ${color.primary};
  10. padding: 0;
  11. margin: 0;
  12. width: 95%;
  13. outline: none;
  14. height: 94%;
  15. display: inline-block;
  16. `;