16 lines
210 B
CSS
16 lines
210 B
CSS
![]() |
@tailwind base;
|
||
|
@tailwind components;
|
||
|
@tailwind utilities;
|
||
|
|
||
|
@layer utilities {
|
||
|
.debug {
|
||
|
@apply border border-red-500;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@layer base {
|
||
|
h1 {
|
||
|
@apply text-4xl font-bold mb-2;
|
||
|
}
|
||
|
}
|