Skip to content

Commit

Permalink
Update Loading.module.css
Browse files Browse the repository at this point in the history
  • Loading branch information
shartte authored Jul 4, 2023
1 parent 9605ccd commit 1e7b6ca
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions src/components/Loading.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
height: 200px;
background-image: url(../assets/loading_bg.png);
background-size: contain;
image-rendering: smooth;
background-position: center;
background-repeat: no-repeat;
image-rendering: unset;
position: relative;

filter: drop-shadow(11px 11px 4px rgba(0, 0, 0, 0.5));
Expand All @@ -28,9 +30,17 @@
bottom: 0;
mask-image: url(../assets/loading_mask.png);
mask-size: contain;
mask-position: center;
mask-repeat: no-repeat;
-webkit-mask-image: url(../assets/loading_mask.png);
-webkit-mask-size: contain;
-webkit-mask-position: center;
-webkit-mask-repeat: no-repeat;
background-image: url(../assets/loading_mask.png);
background-size: contain;
image-rendering: smooth;
background-position: center;
background-repeat: no-repeat;
image-rendering: unset;
background-blend-mode: multiply;

animation: controller-lights 2.5s linear;
Expand Down

0 comments on commit 1e7b6ca

Please sign in to comment.