You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
386 B
15 lines
386 B
var plugin = { |
|
level1: { |
|
property: function boxShadow(_rule, property) { |
|
var values = property.value; |
|
|
|
// remove multiple zeros |
|
if (values.length == 4 && values[0][1] === '0' && values[1][1] === '0' && values[2][1] === '0' && values[3][1] === '0') { |
|
property.value.splice(2); |
|
property.dirty = true; |
|
} |
|
} |
|
} |
|
}; |
|
|
|
module.exports = plugin;
|
|
|