2024-09-25 22:20:47 +02:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
|
|
|
|
|
|
|
@layer utilities {
|
2024-10-06 14:43:06 +02:00
|
|
|
.debug {
|
|
|
|
@apply border border-red-500;
|
|
|
|
}
|
2024-09-25 22:20:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@layer base {
|
2024-10-06 14:43:06 +02:00
|
|
|
br {
|
|
|
|
@apply my-4;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
@apply text-4xl font-bold mb-2;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
@apply text-3xl font-bold mb-2;
|
|
|
|
}
|
2024-09-25 22:20:47 +02:00
|
|
|
}
|