1 | @custom-media --safariONLY (-apple-pay-button-style: inherit);
|
2 | @custom-media --firefoxONLY (-moz-appearance: inherit);
|
3 | @custom-media --firefoxMacONLY (-moz-osx-font-smoothing: inherit);
|
4 | @custom-media --chromeONLY (-webkit-app-region: inherit) and (not (container-type: none));
|
5 | @custom-media --chromiumONLY (-webkit-app-region: inherit) and (container-type: none);
|
6 | @custom-media --webkitONLY (alt: inherit) and (not (-apple-pay-button-style: inherit));
|
7 |
|
8 | :where(html) {
|
9 | --isLTR: 1;
|
10 | --isRTL: -1;
|
11 |
|
12 | &:dir(rtl) {
|
13 | --isLTR: -1;
|
14 | --isRTL: 1;
|
15 | }
|
16 | }
|