We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 238e572 commit 0bc70d9Copy full SHA for 0bc70d9
index.js
@@ -16,7 +16,7 @@ module.exports = postcss.plugin('easing-gradient', (opts) => {
16
const options = opts || {}
17
css.walkRules((rule) => {
18
rule.walkDecls((decl) => {
19
- // If declarations value contains a supported gradient.
+ // If declaration value contains a supported gradient.
20
if (helpers.isEasingGradient(decl.value.substring(0, decl.value.indexOf('(')))) {
21
// Parse the declaration and walk through the nodes — https://github.com/TrySound/postcss-value-parser.
22
const parsedValue = valueParser(decl.value)
0 commit comments