2025-06-06 15:33:59 +02:00

18 lines
301 B
CSS

@import 'tailwindcss/base';
@import 'tailwindcss/components';
@import 'tailwindcss/utilities';
/* Your custom styles below */
@layer base {
body {
@apply bg-white text-pb-anthracite;
}
}
@layer components {
.btn-primary {
@apply bg-pb-turquoise text-white px-6 py-3 rounded-lg;
}
}