rename screen-utilities to screens

This commit is contained in:
Patrick Heller 💩 2017-11-08 18:30:59 +01:00
parent 6cec22b523
commit 44c0035dfa
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
}
}
@tailwind screen-utilities;
@tailwind screens;
.john {
content: "wick";

View File

@ -37,7 +37,7 @@ export default function(config) {
let includesScreenUtilitiesExplicitly = false
css.walkAtRules('tailwind', atRule => {
if (atRule.params === 'screen-utilities') {
if (atRule.params === 'screens') {
includesScreenUtilitiesExplicitly = true
atRule.replaceWith(finalRules)
}