wrapper.styles.ts 283 B

1234567891011121314
  1. import { rem } from 'polished';
  2. import styled from 'styled-components';
  3. export const Container = styled.div`
  4. bottom: 0;
  5. display: flex;
  6. flex-flow: column;
  7. font: ${rem(16)} sans-serif;
  8. justify-content: space-between;
  9. position: absolute;
  10. right: 0;
  11. top: 0;
  12. top: 0;
  13. `;