parent
d1e1084ec1
commit
f28212f933
|
@ -72,8 +72,14 @@ function scopeCss(css = '', hash) {
|
||||||
output = `${last} ${output}`
|
output = `${last} ${output}`
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
if (last.includes(':')) {
|
||||||
if (last.startsWith(':')) {
|
if (last.startsWith(':')) {
|
||||||
output = parseVDeep(last, output)
|
output = parseVDeep(last, output)
|
||||||
|
} else {
|
||||||
|
scoped = true
|
||||||
|
last = last.replace(':', `[data-${hash}]:`)
|
||||||
|
output = `${last} ${output}`
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
scoped = true
|
scoped = true
|
||||||
output = `${last}[data-${hash}] ${output}`
|
output = `${last}[data-${hash}] ${output}`
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "fite",
|
"name": "fite",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.7.4",
|
"version": "0.7.5",
|
||||||
"bin": {
|
"bin": {
|
||||||
"fite": "index.js"
|
"fite": "index.js"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue