Getting Tailwind version up

This commit is contained in:
2023-05-09 13:32:19 -07:00
parent cb7cc06ebd
commit 96316bfda4
7 changed files with 405 additions and 423 deletions

View File

@@ -21,6 +21,12 @@
animation-direction: alternate;
animation-timing-function: ease-in-out;
}
.dark .live-added {
animation: pulse-dark-green 300ms 2 !important;
animation-direction: alternate;
animation-timing-function: ease-in-out;
}
/*
.live-added {
@apply bg-white;
@@ -29,9 +35,15 @@
@keyframes pulse-green {
0% { @apply bg-white; }
100% { @apply bg-green-300;}
100% { @apply bg-green-300 dark:bg-red-700;}
}
@keyframes pulse-dark-green {
0% { @apply dark:bg-gray-700; }
100% { @apply bg-green-700;}
}
.htmx-request .htmx-indicator {
display: inherit !important;
}