From 7b9bfa9420e96c28c876449302271caece89d648 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Wed, 7 Feb 2024 14:32:07 -0600 Subject: [PATCH] use inter font as default in tailwind --- web/tailwind.config.js | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/web/tailwind.config.js b/web/tailwind.config.js index dc84c91b1..1482770b2 100644 --- a/web/tailwind.config.js +++ b/web/tailwind.config.js @@ -2,11 +2,11 @@ module.exports = { darkMode: ["class"], content: [ - './pages/**/*.{ts,tsx}', - './components/**/*.{ts,tsx}', - './app/**/*.{ts,tsx}', - './src/**/*.{ts,tsx}', - ], + "./pages/**/*.{ts,tsx}", + "./components/**/*.{ts,tsx}", + "./app/**/*.{ts,tsx}", + "./src/**/*.{ts,tsx}", + ], theme: { container: { center: true, @@ -15,6 +15,9 @@ module.exports = { "2xl": "1400px", }, }, + fontFamily: { + sans: ['"Inter"', "sans-serif"], + }, extend: { colors: { border: "hsl(var(--border))", @@ -77,7 +80,7 @@ module.exports = { "accordion-up": "accordion-up 0.2s ease-out", }, screens: { - "xs": "480px", + xs: "480px", "2xl": "1440px", "3xl": "1920px", "4xl": "2560px", @@ -85,4 +88,4 @@ module.exports = { }, }, plugins: [require("tailwindcss-animate")], -} \ No newline at end of file +};