mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-23 11:51:05 -05:00
17 lines
271 B
SCSS
17 lines
271 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;
|
|
}
|
|
}
|