fix: mask instruction order
All checks were successful
Deploy Sokko G / deploy (push) Successful in 5s

This commit is contained in:
Shinuwa 2026-07-22 16:21:46 +02:00
parent 843a2822ed
commit d6235c6f44
5 changed files with 36 additions and 57 deletions

View file

@ -0,0 +1,22 @@
@mixin border-mask {
mask-image:
linear-gradient(#000 0 0),
linear-gradient(#000 0 0);
mask-origin:
content-box,
border-box;
mask-clip:
content-box,
border-box;
mask-composite: exclude;
-webkit-mask-image:
linear-gradient(#000 0 0),
linear-gradient(#000 0 0);
-webkit-mask-origin:
content-box,
border-box;
-webkit-mask-clip:
content-box,
border-box;
-webkit-mask-composite: xor;
}