Skip to content

Commit

Permalink
refactor: change animation curve
Browse files Browse the repository at this point in the history
  • Loading branch information
rpenido committed Apr 16, 2024
1 parent 8e468ef commit 079e52e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/course-outline/CourseOutline.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,14 @@

div.row:has(> div > div.highlight) {
animation: 5s glow;
animation-timing-function: cubic-bezier(1, 0, .72, .04);
}

@keyframes glow {
0% {
box-shadow: 0 0 5px 5px $primary-500;
}

90% {
box-shadow: 0 0 5px 5px $primary-500;
}

100% {
box-shadow: unset;
}
Expand Down

0 comments on commit 079e52e

Please sign in to comment.