mirror of
https://github.com/matrix-org/matrix-hookshot.git
synced 2025-03-10 21:19:13 +00:00

* Add widget card style and background * Add padding and header based on embed type parameter * Add changelog * Add loading spinner component * Add loading spinners
19 lines
315 B
SCSS
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;
|
|
}
|