remove postcss mixins
This commit is contained in:
parent
30a673c74c
commit
4a60c0e3f0
|
@ -1,2 +1,4 @@
|
||||||
@import 'colors.css';
|
|
||||||
@import 'reset.css';
|
@import 'reset.css';
|
||||||
|
@import 'variables.css';
|
||||||
|
@import 'colors.css';
|
||||||
|
@import 'base/base.css';
|
||||||
|
|
|
@ -22,12 +22,6 @@ const postcssMixins = {
|
||||||
return defineHSL(name, hue, sat, light);
|
return defineHSL(name, hue, sat, light);
|
||||||
},
|
},
|
||||||
|
|
||||||
bpMin(mixin) {
|
|
||||||
},
|
|
||||||
|
|
||||||
bpMax(mixin) {
|
|
||||||
},
|
|
||||||
|
|
||||||
// TODO - untested
|
// TODO - untested
|
||||||
// // font rendering -> useful for light text on dark backgrounds
|
// // font rendering -> useful for light text on dark backgrounds
|
||||||
fontSmooth() {
|
fontSmooth() {
|
||||||
|
|
|
@ -1,15 +1,3 @@
|
||||||
@define-mixin bp-min $breakpoint {
|
|
||||||
@media (min-width: $breakpoint) { @mixin-content; }
|
|
||||||
}
|
|
||||||
|
|
||||||
@define-mixin bp-max $breakpoint {
|
|
||||||
@media (max-width: $breakpoint - 0.001) { @mixin-content; }
|
|
||||||
}
|
|
||||||
|
|
||||||
@define-mixin bp-min-max $bp-min, $bp-max {
|
|
||||||
@media (min-width: $bp-min) and (max-width: $bp-max - 0.001) { @mixin-content; }
|
|
||||||
}
|
|
||||||
|
|
||||||
/* crop top space on text elements - caused by line height */
|
/* crop top space on text elements - caused by line height */
|
||||||
/*
|
/*
|
||||||
The mixin also accepts a (not required) second parameter (a number smaller than 1 that varies with the font-family value) that improves the crop effect.
|
The mixin also accepts a (not required) second parameter (a number smaller than 1 that varies with the font-family value) that improves the crop effect.
|
||||||
|
|
Loading…
Reference in New Issue