Files
advanced-camera-card/src/scss/loading.scss
T
Dermot Duffy 9ca56d061f fix: Improve media background image (#1635)
* fix: Improve media background image

* Simplify loading spinner.

This is slightly less fancy, but removes code. I'm guessing no-one will notice or care enough to raise it! (BMFW).
2024-10-12 14:31:26 -07:00

25 lines
314 B
SCSS

:host {
width: intrinsic;
height: intrinsic;
display: flex;
justify-content: center;
align-items: center;
pointer-events: none;
}
img {
width: 10%;
animation: rotate 8s linear infinite;
}
@keyframes rotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}