hookshot/web/components/elements/LoadingSpinner.module.scss
Justin Carlson 7575f93f67
Improve widget style (#652)
* Add widget card style and background

* Add padding and header based on embed type parameter

* Add changelog

* Add loading spinner component

* Add loading spinners
2023-03-08 09:20:13 -05:00

19 lines
315 B
SCSS

@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.spinner {
width: 16px;
height: 16px;
animation-name: spin;
animation-duration: 1000ms;
animation-timing-function: steps(8, end);
animation-iteration-count: infinite;
}