Add error for failured to send reaction.

This commit is contained in:
Half-Shot
2024-11-08 12:52:05 +00:00
parent afe64cfe20
commit e98f84eb8f
3 changed files with 133 additions and 87 deletions

View File

@@ -64,3 +64,19 @@
.searchForm > label {
flex: auto;
}
.alert {
margin-bottom: var(--cpd-space-3x);
animation: grow-in 200ms;
height: 2.5em;
}
@keyframes grow-in {
from {
height: 0;
}
to {
height: 2.5em;
}
}