styled.ts 339 B

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