You've already forked AstralRinth
forked from didirus/AstralRinth
docs: fix breakpoints
This commit is contained in:
@@ -8,7 +8,16 @@ const config = {
|
|||||||
require('postcss-preset-env')({
|
require('postcss-preset-env')({
|
||||||
features: {
|
features: {
|
||||||
'custom-media-queries': {
|
'custom-media-queries': {
|
||||||
importFrom: './src/lib/styles/variables/queries.postcss'
|
importFrom: [
|
||||||
|
{
|
||||||
|
customMedia: {
|
||||||
|
'--sm': '(min-width: 544px)',
|
||||||
|
'--md': '(min-width: 768px)',
|
||||||
|
'--lg': '(min-width: 1012px)',
|
||||||
|
'--xl': '(min-width: 1280px)',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|||||||
@@ -1,4 +0,0 @@
|
|||||||
@custom-media --sm (min-width: 544px);
|
|
||||||
@custom-media --md (min-width: 768px);
|
|
||||||
@custom-media --lg (min-width: 1012px);
|
|
||||||
@custom-media --xl (min-width: 544px);
|
|
||||||
Reference in New Issue
Block a user