14 lines
222 B
CSS
14 lines
222 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
|
|
@layer components {
|
|
.btn {
|
|
@apply px-4 py-2 rounded-md text-neutral-50 text-sm font-semibold hover:shadow-md;
|
|
}
|
|
}
|
|
|
|
body {
|
|
@apply font-sans;
|
|
} |