20 lines
494 B
CSS
20 lines
494 B
CSS
a:not(.btn) {
|
|
@apply text-indigo-600 hover:text-indigo-900;
|
|
}
|
|
|
|
.btn {
|
|
@apply block bg-indigo-600 hover:bg-indigo-700 text-white text-center font-bold transition duration-200;
|
|
}
|
|
|
|
.btn.inverse {
|
|
@apply bg-indigo-100 hover:bg-indigo-200 text-indigo-700;
|
|
}
|
|
|
|
.btn.cancel {
|
|
@apply bg-transparent hover:bg-black hover:text-white text-black border border-black font-normal transition-all duration-300;
|
|
}
|
|
|
|
.btn.ghost {
|
|
@apply bg-gray-50 hover:bg-gray-300 border border-neutral-500 text-gray-600;
|
|
}
|