From cbd778fd96143cb1705790e39495bd3b222385f7 Mon Sep 17 00:00:00 2001 From: Shawn Allen Date: Wed, 29 Sep 2021 16:07:43 -0700 Subject: [PATCH] [breaking] change "lg" breakpoint to "md"; add "xl" --- src/tokens/breakpoints.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/tokens/breakpoints.js b/src/tokens/breakpoints.js index c88b986a..b660f86d 100644 --- a/src/tokens/breakpoints.js +++ b/src/tokens/breakpoints.js @@ -1,4 +1,5 @@ module.exports = { - lg: '768px', - xl: '1090px' + md: '768px', + lg: '1076px', + xl: '1280px' }