Skip to content

Commit

Permalink
feat(options): add support for short names
Browse files Browse the repository at this point in the history
  • Loading branch information
Viktor Vincze committed Mar 5, 2020
1 parent 4025772 commit 0a4d398
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,17 @@ export const setup = function(opts: IOptions) {

export const breakpoints = {
micro: [0, 375],
mi: [0, 375],
mobile: [376, 639],
m: [376, 639],
tablet: [640, 1023],
t: [640, 1023],
small: [1024, 1439],
s: [1024, 1439],
medium: [1440, 1919],
large: [1920, 10000]
med: [1440, 1919],
large: [1920, 10000],
l: [1920, 10000]
}

setup({ breakpoints })
Expand Down

0 comments on commit 0a4d398

Please sign in to comment.