v1.0 with SW PWA enabled
This commit is contained in:
4
frontend/node_modules/tailwindcss/src/corePlugins.js
generated
vendored
4
frontend/node_modules/tailwindcss/src/corePlugins.js
generated
vendored
@ -409,8 +409,8 @@ export let variantPlugins = {
|
||||
matchVariant(
|
||||
'supports',
|
||||
(value = '') => {
|
||||
let check = normalize(value)
|
||||
let isRaw = /^\w*\s*\(/.test(check)
|
||||
let check = value.startsWith('--') ? value : normalize(value)
|
||||
let isRaw = /^[\w-]*\s*\(/.test(check)
|
||||
|
||||
// Chrome has a bug where `(condition1)or(condition2)` is not valid
|
||||
// But `(condition1) or (condition2)` is supported.
|
||||
|
||||
Reference in New Issue
Block a user