Skip to content

Commit

Permalink
Disable changing opacity in splash slider (#715)
Browse files Browse the repository at this point in the history
  • Loading branch information
robines authored Oct 16, 2023
1 parent 7ee78a8 commit 7466a47
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 7466a47

Please sign in to comment.