open-consul/ui-v2/app/styles/components/loader/skin.scss
John Cowen 941fefb15c ui: Split out product css component into its separate elements (#7342)
* Remove old %action-group

* Remove old variables we no longer need

* Use the discovery-chain component in the same manner as others

* Split `product` out into its separate components
2020-05-12 17:14:11 +00:00

32 lines
496 B
SCSS

%loader circle {
animation: loader-animation 1.5s infinite ease-in-out;
transform-origin: 50% 50%;
}
%loader g:nth-last-child(2) circle {
animation-delay: 0.2s;
}
%loader g:nth-last-child(3) circle {
animation-delay: 0.3s;
}
%loader g:nth-last-child(4) circle {
animation-delay: 0.4s;
}
%loader g:nth-last-child(5) circle {
animation-delay: 0.5s;
}
@keyframes loader-animation {
0%,
100% {
transform: scale3D(1, 1, 1);
}
33% {
transform: scale3D(0, 0, 1);
}
}