29 lines
393 B
CSS
29 lines
393 B
CSS
@import "tailwindcss";
|
|
@plugin "@tailwindcss/typography";
|
|
@plugin "daisyui";
|
|
|
|
@layer utilities {
|
|
.debug {
|
|
@apply border border-red-500;
|
|
}
|
|
}
|
|
|
|
@layer base {
|
|
br {
|
|
@apply my-0.5;
|
|
}
|
|
|
|
h1 {
|
|
@apply text-4xl font-bold mb-2;
|
|
}
|
|
|
|
h2 {
|
|
@apply text-3xl font-bold mb-2;
|
|
}
|
|
|
|
/* TODO change default style*/
|
|
a {
|
|
@apply link
|
|
}
|
|
}
|