You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
432 B
TypeScript

import { css } from 'antd-style';
export const dotLoading = css`
&::after {
content: '\\2026'; /* ascii code for the ellipsis character */
overflow: hidden;
display: inline-block;
width: 0;
vertical-align: bottom;
animation: ellipsis steps(4, end) 900ms infinite;
}
@keyframes ellipsis {
to {
width: 1.25em;
}
}
@keyframes ellipsis {
to {
width: 1.25em;
}
}
`;