Skip to content

Commit

Permalink
style: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
rpenido committed Apr 11, 2024
1 parent 4038cec commit 0ea204f
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions src/course-outline/CourseOutline.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,19 @@
@import "./paste-button/PasteButton";

div.row:has(> div > div.highlight) {
animation: 5s glow;
animation: 5s glow;
}

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

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

100% {
box-shadow: unset;
}
}

0 comments on commit 0ea204f

Please sign in to comment.