mirror of
https://akkoma.dev/lamp/akkoma-fe.git
synced 2025-08-12 21:31:52 -04:00
add animate-spin class
This commit is contained in:
parent
57f46e68e4
commit
9d44015ab4
15
src/App.scss
15
src/App.scss
@ -855,3 +855,18 @@ nav {
|
||||
.btn.btn-default {
|
||||
min-height: 28px;
|
||||
}
|
||||
|
||||
.animate-spin {
|
||||
animation: spin 2s infinite linear;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user