Updates to the cancel modal

This commit is contained in:
Jonathan Bobel
2025-05-07 15:06:39 -04:00
parent be038daa0a
commit abb3ba64d9
4 changed files with 81 additions and 12 deletions

View File

@@ -352,6 +352,19 @@ h2.recipient-list {
}
// Button ellipses loading
.dot-anim {
display: inline-block;
margin-left: 0; /* remove left margin if it exists */
padding-left: 0;
font-size: 1em;
animation: dots 1s steps(3, end) infinite;
}
/* Optional: reduce spacing by removing whitespace node */
button span.dot-anim {
margin-left: 0; /* forces no space even if white-space exists */
}
.dot-anim::after {
content: '.';
animation: dotPulse 1.5s steps(3, end) infinite;