mirror of https://github.com/linkerd/linkerd2.git
28 lines
442 B
CSS
28 lines
442 B
CSS
|
|
@keyframes conduitspinner {
|
|
to {
|
|
stroke-dashoffset: 0px;
|
|
}
|
|
}
|
|
|
|
.conduit-mark {
|
|
animation: conduitspinner 7s linear forwards;
|
|
fill: #eeeeee;
|
|
stroke-dasharray: 400px;
|
|
stroke-dashoffset: 400px;
|
|
animation-delay: 0s;
|
|
animation-iteration-count: infinite;
|
|
}
|
|
|
|
.spinner-container {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 75vh;
|
|
|
|
& svg path {
|
|
stroke: #ff576b;
|
|
stroke-width: 1px;
|
|
}
|
|
}
|