zombiebox-extension-storybook
Version:
ZombieBox extension for interactive UI development
28 lines (23 loc) • 451 B
CSS
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.w-ext-storybook-spinner {
width: 60px;
height: 60px;
border-width: 4px;
border-style: solid;
border-color: rgba(0, 0, 0, 0.1);
border-left-color: #dadada;
border-radius: 50%;
animation: spin 1.2s linear infinite;
}
.zb-full-hd .w-ext-storybook-spinner {
width: calc(60px * 1.5);
height: calc(60px * 1.5);
border-width: calc(4px * 1.5);
}