Basic styling

This commit is contained in:
Filip Krumpe 2022-01-22 15:56:59 +01:00
parent fa6c94153f
commit e65f5955dd
2 changed files with 15 additions and 2 deletions

View File

@ -1,3 +1,12 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
h1 {
@apply text-2xl;
}
h2 {
@apply text-xl;
}
}

View File

@ -2,7 +2,11 @@ const config = {
mode: "jit",
content: ["./src/**/*.{html,js,svelte,ts}"],
theme: {
extend: {},
extend: {
fontFamily: {
sans: ["Baar Sophia", "Arial"],
}
},
},
plugins: [],
}