fix: mask instruction order
All checks were successful
Deploy Sokko G / deploy (push) Successful in 5s
All checks were successful
Deploy Sokko G / deploy (push) Successful in 5s
This commit is contained in:
parent
843a2822ed
commit
d6235c6f44
5 changed files with 36 additions and 57 deletions
22
website/src/styles/_mixins.scss
Normal file
22
website/src/styles/_mixins.scss
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue