Allows for deleting of transaction rules

This commit is contained in:
2023-11-03 16:53:36 -07:00
parent 3f7f0a0aaf
commit 320d7c73df
6 changed files with 55 additions and 36 deletions

View File

@@ -81,6 +81,18 @@
animation-direction: alternate;
animation-timing-function: ease-in-out;
}
.live-removed {
animation: pulse-red 300ms 2;
animation-direction: alternate;
animation-timing-function: ease-in-out;
}
.dark .live-removed {
animation: pulse-dark-red 300ms 2 !important;
animation-direction: alternate;
animation-timing-function: ease-in-out;
}
/*
.live-added {
@apply bg-white;
@@ -97,6 +109,16 @@
100% { @apply bg-green-700;}
}
@keyframes pulse-red {
0% { @apply bg-white; }
100% { @apply bg-red-300 dark:bg-red-700;}
}
@keyframes pulse-dark-red {
0% { @apply dark:bg-red-700; }
100% { @apply bg-red-700;}
}
.htmx-request .htmx-indicator, .htmx-request.htmx-indicator {
display: inherit !important;