Skip to content

Commit

Permalink
minor style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
maheshj01 committed Oct 6, 2024
1 parent 8b8109e commit 9817d03
Showing 1 changed file with 27 additions and 2 deletions.
29 changes: 27 additions & 2 deletions src/app/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,26 @@
}
}

@keyframes revealFromBottom {
0% {
clip-path: inset(100% 0 0 0);
}

100% {
clip-path: inset(0 0 0 0);
}
}

@keyframes revealFromTop {
0% {
clip-path: inset(0 0 100% 0);
}

100% {
clip-path: inset(0 0 0 0);
}
}

@keyframes revealFromLeft {
0% {
clip-path: inset(0 100% 0 0);
Expand All @@ -53,8 +73,13 @@
}

.reveal-in-animation {
animation: revealFromLeft 0.7s ease-out forwards;
overflow: hidden;
animation: revealFromLeft 1s ease-out;
overflow: hidden
}

.reveal-top-animation {
animation: revealFromTop 1s ease-out;
overflow: hidden
}

.tagline {
Expand Down

0 comments on commit 9817d03

Please sign in to comment.