persona-community-5/.pnpm-store/v3/files/1e/d55dfecd51f14d2acc4b2e1ea76eaa728ed90be4f0580c701178a855b90d7b5dfb05d2b4e17e7d6db9319299eb179a37a1634347342f3e24698d2c25438972
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

15 lines
357 B
Plaintext

let Declaration = require('../declaration')
class TextEmphasisPosition extends Declaration {
set(decl, prefix) {
if (prefix === '-webkit-') {
decl.value = decl.value.replace(/\s*(right|left)\s*/i, '')
}
return super.set(decl, prefix)
}
}
TextEmphasisPosition.names = ['text-emphasis-position']
module.exports = TextEmphasisPosition