Files
notifications-admin/app/assets/stylesheets/components/loading-indicator.scss
Chris Hill-Scott 5b4edc92fd Add a loading indicator component
This will let us design a page which tells the user they need to wait.
2019-05-15 15:29:47 +01:00

19 lines
314 B
SCSS

@keyframes ellipsis {
to {
width: 1.25em;
}
}
.loading-indicator {
&:after {
overflow: hidden;
display: inline-block;
vertical-align: bottom;
animation: ellipsis steps(4,end) 1.5s infinite;
content: "\2026"; // ellipsis
width: 0;
position: relative;
left: -0.15em;
}
}