From 8c103f2aa9ae950a790f2181a339cd152251a131 Mon Sep 17 00:00:00 2001 From: Thomas JUND Date: Fri, 29 Jan 2021 11:27:18 +0100 Subject: [PATCH] postcss: better example of selector regex --- postcss.config.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/postcss.config.js b/postcss.config.js index a68cc8e..2584e88 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,8 +1,8 @@ module.exports = { plugins: [ require('postcss-explore')({ - selector: /\.cell$/, propertie: /^border/ + selector: /\.cell(,|\s\{)/, }) - ], -} \ No newline at end of file + ] +}