All checks were successful
Build and deploy website / build (push) Successful in 34s
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>
29 lines
375 B
CSS
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
|
|
}
|
|
}
|