styled.ts 222 B

123456789101112
  1. import styled from 'styled-components';
  2. export const TextWrapper = styled.div`
  3. width: 324px;
  4. margin-bottom: 16px;
  5. font-size: 1.25rem;
  6. `;
  7. export const BtnWrapper = styled.div`
  8. width: 100%;
  9. text-align: right;
  10. `;