Template for starting apps, powered by Next.js
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

22 lines
439 B

  1. export const container = {
  2. padding: '0 1rem',
  3. boxSizing: 'border-box',
  4. margin: '0 auto',
  5. maxWidth: 'calc(var(--width-base, 360px) * 2)',
  6. width: '100%',
  7. height: '100%',
  8. display: 'flex',
  9. alignItems: 'center',
  10. }
  11. export const wideContainer = {
  12. padding: '0 1rem',
  13. boxSizing: 'border-box',
  14. margin: '0 auto',
  15. maxWidth: 'calc(var(--width-base, 360px) * 3)',
  16. width: '100%',
  17. height: '100%',
  18. display: 'flex',
  19. alignItems: 'center',
  20. }