UX: popping animation for adding users (#23459)

* UX:  popping animation for adding users

* accessibility wrapper
This commit is contained in:
chapoi 2023-09-07 15:42:49 +02:00 committed by GitHub
parent e1373c3e84
commit cde5dea74f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,14 @@
@keyframes popIn {
0% {
transform: scale(0.1);
opacity: 0;
}
100% {
transform: scale(1);
opacity: 1;
}
}
.chat-message-creator {
display: flex;
align-items: center;
@ -219,6 +230,9 @@
height: calc(var(--row-height) - 6);
padding-inline: 0.25rem;
margin: 3px;
@media (prefers-reduced-motion: no-preference) {
animation: popIn 0.1s ease-out;
}
.d-icon-times {
margin-top: 4px;