add waiting on disabled button

This commit is contained in:
Thomas Ruoff
2020-10-07 22:35:32 +02:00
committed by Thomas Ruoff
parent 59ab8b64fa
commit aafe849e6e

View File

@@ -71,6 +71,10 @@
@apply text-gray-800; @apply text-gray-800;
} }
.ibtn:disabled {
@apply opacity-50 cursor-wait;
}
.btn { .btn {
@apply font-bold py-2 px-4 rounded mx-2; @apply font-bold py-2 px-4 rounded mx-2;
} }
@@ -103,6 +107,10 @@
@apply bg-gray-700; @apply bg-gray-700;
} }
.btn:disabled {
@apply opacity-50 cursor-wait;
}
.link { .link {
@apply font-medium text-blue-500 underline; @apply font-medium text-blue-500 underline;
} }