13 lines
195 B
CSS
13 lines
195 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
|
|
.btn {
|
|
@apply py-2 px-4 font-semibold rounded-lg shadow-md;
|
|
}
|
|
.btn-green {
|
|
@apply text-white bg-green-500 hover:bg-green-700;
|
|
}
|
|
|