15 lines
230 B
SCSS
15 lines
230 B
SCSS
|
/* This is needed for the wicg-inert polyfill */
|
||
|
|
||
|
[inert] {
|
||
|
pointer-events: none;
|
||
|
cursor: default;
|
||
|
}
|
||
|
|
||
|
[inert],
|
||
|
[inert] * {
|
||
|
user-select: none;
|
||
|
-webkit-user-select: none;
|
||
|
-moz-user-select: none;
|
||
|
-ms-user-select: none;
|
||
|
}
|