Skip to content

Commit

Permalink
docs: change custome property to css variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Scrum committed Feb 1, 2019
1 parent fb6700f commit e4d5f12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var atEach = require('postcss-each');
var atVariables = require('postcss-at-rules-variables');
var atIf = require('postcss-conditionals');
var atFor = require('postcss-for');
var customProperties = require('postcss-custom-properties');
var cssVariables = require('postcss-css-variables');
var nested = require('postcss-nested');

// CSS to be processed
Expand All @@ -49,7 +49,7 @@ var output = postcss()
}))
.use(atFor())
.use(atIf())
.use(customProperties())
.use(cssVariables())
.use(nested())
.process(css, {
from: 'css/input.css'
Expand Down

0 comments on commit e4d5f12

Please sign in to comment.