@servicetitan/assist-ui
Version:
ServiceTitan Atlas UI Components
22 lines (19 loc) • 455 B
text/less
@import (reference) '~@servicetitan/tokens/dist/tokens.less';
.loader {
width: 48px;
height: 48px;
border: 5px solid @color-cyan-400;
border-bottom-color: transparent;
border-radius: @border-radius-circular;
display: inline-block;
box-sizing: border-box;
animation: rotation 1s linear infinite;
}
@keyframes rotation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}