Skip to content

Commit 3b76236

Browse files
committed
Add rotation animation and class
1 parent 97b5c82 commit 3b76236

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

src/styles.scss

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,44 @@ a {
2121
font-weight: bold;
2222
}
2323

24+
25+
26+
27+
28+
29+
30+
31+
32+
33+
34+
35+
36+
37+
38+
39+
40+
41+
42+
43+
44+
45+
46+
47+
48+
49+
50+
51+
52+
.wheee {
53+
animation: rotation 5s infinite linear;
54+
}
55+
56+
@keyframes rotation {
57+
from {
58+
transform: rotate(0deg);
59+
}
60+
to {
61+
transform: rotate(359deg);
62+
}
63+
}
64+

0 commit comments

Comments
 (0)