postcss_vars: Use underscore to follow better naming convention.

This commit is contained in:
Aman Agrawal
2021-01-25 08:18:09 +00:00
committed by Tim Abbott
parent c287377512
commit f8aea9aecb
17 changed files with 58 additions and 58 deletions

View File

@@ -14,22 +14,22 @@ const ms = 320; // Mobile small
module.exports = {
media_breakpoints: {
"xs-min": xs + "px",
"sm-min": sm + "px",
"md-min": md + "px",
"lg-min": lg + "px",
"xl-min": xl + "px",
"ml-min": ml + "px",
"mm-min": mm + "px",
"ms-min": ms + "px",
xs_min: xs + "px",
sm_min: sm + "px",
md_min: md + "px",
lg_min: lg + "px",
xl_min: xl + "px",
ml_min: ml + "px",
mm_min: mm + "px",
ms_min: ms + "px",
"xs-max": xs - 1 + "px",
"sm-max": sm - 1 + "px",
"md-max": md - 1 + "px",
"lg-max": lg - 1 + "px",
"xl-max": xl - 1 + "px",
"ml-max": ml - 1 + "px",
"mm-max": mm - 1 + "px",
"ms-max": ms - 1 + "px",
xs_max: xs - 1 + "px",
sm_max: sm - 1 + "px",
md_max: md - 1 + "px",
lg_max: lg - 1 + "px",
xl_max: xl - 1 + "px",
ml_max: ml - 1 + "px",
mm_max: mm - 1 + "px",
ms_max: ms - 1 + "px",
},
};