coze-studio/frontend/config/stylelint-config/examples/no-important.less

11 lines
153 B
Plaintext

// avoid
.a {
opacity: 0 !important;
}
// if you have to
.b {
/* stylelint-disable-next-line declaration-no-important */
opacity: 0 !important;
}