18 lines
199 B
Plaintext
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;
|
|
}
|
|
}
|
|
}
|