fix(ui-components): add an & prefix to custom variant (#46608)

pull/46619/head
Huyen Nguyen 2022-06-22 15:12:39 +07:00 committed by GitHub
parent 859f36d7fb
commit a0c0813488
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ module.exports = {
},
plugins: [
plugin(({ addVariant }) => {
addVariant('aria-disabled', '[aria-disabled="true"]');
addVariant('aria-disabled', '&[aria-disabled="true"]');
})
]
};