From 9df5e1c04e289be5466e3fc891d1a1f140ece7d7 Mon Sep 17 00:00:00 2001 From: slowbackspace Date: Thu, 24 Jan 2019 18:43:58 +0100 Subject: [PATCH] add SCREEN_SIZE const --- src/config/variables.js | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/config/variables.js b/src/config/variables.js index 9ec9aa0a..48a7f1a3 100644 --- a/src/config/variables.js +++ b/src/config/variables.js @@ -1,3 +1,15 @@ +// Bootstrap 3 breakpoints +/* XS - Extra Small Devices, Phones */ +/* SM - Small Devices, Tablets */ +/* MD - Medium Devices, Desktops */ +/* LG - Large Devices, Wide Screens */ +export const SCREEN_SIZE = { + XS: '480px', + SM: '768px', + MD: '992px', + LG: '1170px', +}; + // OLD UNITS // SMALLEST: '10px', // SMALLER: '12px', @@ -13,7 +25,6 @@ // H3: '14px', // H4: '12px', // COUNTER: '11px', - export const FONT_SIZE = { SMALL: '0.8571rem', BASE: '1rem',