18 lines
317 B
CSS
18 lines
317 B
CSS
@import "tailwindcss";
|
|
|
|
.btn-primary {
|
|
@apply bg-blue-600 text-white px-4 py-2 rounded;
|
|
}
|
|
|
|
.btn-secondary {
|
|
@apply bg-green-600 text-white px-4 py-2 rounded;
|
|
}
|
|
|
|
.btn-danger {
|
|
@apply bg-red-600 text-white px-4 py-2 rounded;
|
|
}
|
|
|
|
.btn-disabled {
|
|
@apply bg-gray-400 text-white px-4 py-2 rounded;
|
|
}
|
|
|