Get rid of pre-iOS-15 -webkit- prefixes

I mean, I don't care about anything lower tbh
This commit is contained in:
daudix
2024-09-14 05:06:48 +03:00
parent 4ead8a1396
commit 4ed42a397b
15 changed files with 28 additions and 112 deletions

View File

@ -1,12 +1,10 @@
#banner-container {
--mask: linear-gradient(black, transparent);
-webkit-mask-image: var(--mask);
-webkit-user-select: none;
position: absolute;
top: 0;
left: 0;
z-index: -1;
mask-image: var(--mask);
mask-image: linear-gradient(black, transparent);
width: 100vw;
height: 50vw; // hack to keep the aspect ratio 2:1
user-select: none;