Added -webkit- prefix to mask and clip css props

This commit is contained in:
Asaf Gartner 2024-02-12 20:41:26 +02:00
parent 1e5c0c7b42
commit 7800cd9fe1
1 changed files with 3 additions and 0 deletions

View File

@ -97,12 +97,14 @@
.c--theme-gradient-dark {
background: var(--theme-gradient-dark);
background-clip: text;
-webkit-background-clip: text;
color: transparent;
}
.c--theme-gradient-light {
background: var(--theme-gradient-light);
background-clip: text;
-webkit-background-clip: text;
color: transparent;
}
@ -137,6 +139,7 @@
.svg-mask {
mask: var(--mask-url);
-webkit-mask: var(--mask-url);
}
.fill-current {