martials.no/src/styles/global.css
Martin Berg Alstad b9f7b63aa9
All checks were successful
Build and deploy website / build (push) Successful in 34s
Fix localization on detailed project pages.
Fix way too much padding on <br/> tags.

Added some old project entries.

Added Project as a convenience type.

Added link class to all a tags to easier distinguish links in text.

Signed-off-by: Martin Berg Alstad <git@martials.no>
2024-10-20 22:25:52 +02:00

29 lines
375 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@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
}
}