diff options
author | Hayleigh Thompson <me@hayleigh.dev> | 2023-08-22 23:38:05 +0100 |
---|---|---|
committer | Hayleigh Thompson <me@hayleigh.dev> | 2023-08-22 23:38:05 +0100 |
commit | 6c1a468d33e82bb27b8799f25948e1197ccb452b (patch) | |
tree | 5fca29a84719c1bcb7a956beef2128bd308c668b /docs/tailwind.config.js | |
parent | 9bc9b6ae2664b63b02a8cb5a44660f7f225ad910 (diff) | |
download | lustre-6c1a468d33e82bb27b8799f25948e1197ccb452b.tar.gz lustre-6c1a468d33e82bb27b8799f25948e1197ccb452b.zip |
:art: Add NTDapper font.
Diffstat (limited to 'docs/tailwind.config.js')
-rw-r--r-- | docs/tailwind.config.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/tailwind.config.js b/docs/tailwind.config.js index a296e3a..24b6555 100644 --- a/docs/tailwind.config.js +++ b/docs/tailwind.config.js @@ -1,7 +1,11 @@ export default { content: ["./index.html", "./src/**/*.{mjs,gleam}"], theme: { - extend: {}, + extend: { + fontFamily: { + sans: ["NTDapper"], + }, + }, }, plugins: [require("@tailwindcss/typography")], }; |