-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpostcss.config.js
More file actions
26 lines (26 loc) · 837 Bytes
/
postcss.config.js
File metadata and controls
26 lines (26 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
module.exports = {
plugins: {
'postcss-import': {},
'postcss-mixins': {},
'postcss-preset-env': {
stage: 0,
features: {
'custom-media-queries': {
importFrom: {
customMedia: {
/* BREAKPOINTS SHOULD NOT BE CHANGED WITHOUT ANALYSIS */
'--b_xs': `screen and (max-width: 575px)`,
'--b_sm': `screen and (min-width: 576px)`,
'--b_md': `screen and (min-width: 768px)`,
'--b_lg': `screen and (min-width: 1024px)`,
'--b_xl': `screen and (min-width: 1176px)`,
'--b_sm_max': `screen and (max-width: 767px)`,
'--b_md_max': `screen and (max-width: 1023px)`,
'--b_lg_max': `screen and (max-width: 1175px)`,
},
},
},
},
},
},
};