coze-studio/frontend/config/stylelint-config/examples/first-level-global.less

18 lines
199 B
Plaintext

// bad
// bad
/* stylelint-disable plugin/disallow-first-level-global */
:global {
.semi-button {
width: 300px;
}
}
// ok
.a {
:global {
.semi-button {
width: 300px;
}
}
}