26 lines
401 B
CSS
26 lines
401 B
CSS
@import "tailwindcss";
|
|
|
|
body {
|
|
font-family: 'Poppins';
|
|
}
|
|
|
|
.container {
|
|
@apply max-w-4/5 mx-auto;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|