Skip to content

Commit

Permalink
fix : keyframe snake_case 사용 css에도 반영 (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasper200207 authored Feb 19, 2024
1 parent 8e4f738 commit 48fbfa7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/containers/main/CropLine/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
}

.rolling_crop {
animation: var(--duration, 10s) linear 0s infinite normal forwards running rollingtop;
animation: var(--duration, 10s) linear 0s infinite normal forwards running rolling_top;
}
.rolling_crop_clone {
animation: var(--duration, 10s) linear 0s infinite normal none running rollingtopclone;
animation: var(--duration, 10s) linear 0s infinite normal none running rolling_top_clone;
}

.rev_rolling_crop {
animation: var(--duration, 10s) linear 0s infinite normal forwards running rollingbottom;
animation: var(--duration, 10s) linear 0s infinite normal forwards running rolling_bottom;
}
.rev_rolling_crop_clone {
animation: var(--duration, 10s) linear 0s infinite normal none running rollingbottomclone;
animation: var(--duration, 10s) linear 0s infinite normal none running rolling_bottom_clone;
}

@keyframes rolling_top {
Expand Down

0 comments on commit 48fbfa7

Please sign in to comment.