postcss: better example of selector regex

This commit is contained in:
Thomas Jund 2021-01-29 11:27:18 +01:00
parent 462b8056f7
commit 8c103f2aa9
1 changed files with 3 additions and 3 deletions

View File

@ -1,8 +1,8 @@
module.exports = {
plugins: [
require('postcss-explore')({
selector: /\.cell$/,
propertie: /^border/
selector: /\.cell(,|\s\{)/,
})
],
}
]
}