mirror of
https://github.com/stylersnico/linktree.git
synced 2026-06-15 08:02:07 +02:00
a41042c318
Only local fonts, no external requests
20 lines
297 B
Plaintext
20 lines
297 B
Plaintext
// Animated Icons
|
|
// --------------------------
|
|
|
|
.@{fa-css-prefix}-spin {
|
|
animation: fa-spin 2s infinite linear;
|
|
}
|
|
|
|
.@{fa-css-prefix}-pulse {
|
|
animation: fa-spin 1s infinite steps(8);
|
|
}
|
|
|
|
@keyframes fa-spin {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|