Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

Commit

Permalink
Modify breakpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
arnemolland committed Oct 27, 2021
1 parent 81a3650 commit 84c7d33
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions src/lib/theme/breakpoints.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
export type Breakpoints = {
phones: string
tablets: string
desktops: string
large: string
xlarge: string
xs: string
sm: string
md: string
lg: string
xl: string
xxl: string
}

const fallback: Breakpoints = {
phones: '576px',
tablets: '768px',
desktops: '992px',
large: '1200px',
xlarge: '1440px'
xs: '29rem',
sm: '36rem',
md: '48rem',
lg: '62rem',
xl: '75rem',
xxl: '90rem'
}

export default fallback

0 comments on commit 84c7d33

Please sign in to comment.