Skip to content

Commit

Permalink
Disable changing opacity in splash slider
Browse files Browse the repository at this point in the history
  • Loading branch information
robines committed Oct 9, 2023
1 parent 5bdfd15 commit 4f0e850
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions frontend/src/Pages/HomePage/HomePage.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,24 +38,20 @@
@keyframes splash-slide-in {
0% {
transform: translateX(100vw);
opacity: 0;
}

100% {
transform: translateX(0%);
opacity: 1;
}
}

@keyframes splash-slide-out {
0% {
transform: translate(0);
opacity: 1;
}

100% {
transform: translateX(-100vw);
opacity: 0;
}
}

Expand Down

0 comments on commit 4f0e850

Please sign in to comment.