lydstyrke/styles.css

25 lines
349 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
h1 {
@apply text-2xl;
@apply font-bold;
}
h2 {
@apply text-xl;
@apply font-bold;
}
h3 {
@apply text-lg;
@apply font-bold;
}
}
.debug {
@apply border;
@apply border-2;
@apply border-black;
}