Last active
February 2, 2017 00:20
-
-
Save rfviolato/2ce47ca46ac58ee01464db2803c3f5a8 to your computer and use it in GitHub Desktop.
CSSNext Vars
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* No imports needed */ | |
.nav { | |
width: var(--Nav-mobile-height); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import cssVariables from './variables.js'; | |
const myCssVar = cssVariables['--Nav-mobile-height']; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default { | |
'--Nav-mobile-height': '80px', | |
(...your other variables) | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import cssVariables from './variables.js'; | |
const config = {}; | |
(...other webpack config stuff) | |
config.postcss = () => ([ | |
cssnext({ | |
features: { | |
customProperties: { | |
variables: cssVariables, | |
}, | |
}, | |
}), | |
(...other plugins) | |
]); | |
export default config; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nice!
According to docs you don't have to prefix vars with
--
.https://github.com/postcss/postcss-custom-properties#variables