omim
Version:
Material Design for Omi.
32 lines (31 loc) • 533 B
CSS
:host {
display: inline-block;
}
.m-icon {
text-align: center;
display: inline-block;
}
.m-icon svg {
display: inline-block;
vertical-align: top;
}
.rotate {
display: inline-block;
-webkit-animation: rotate 1s infinite linear;
animation: rotate 1s infinite linear;
}
i div {
font-style: normal;
}
@-webkit-keyframes rotate {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes rotate {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}