diff --git a/tailwind.config.cjs b/tailwind.config.cjs index 32e3abd..b45980c 100644 --- a/tailwind.config.cjs +++ b/tailwind.config.cjs @@ -1,8 +1,21 @@ /** @type {import('tailwindcss').Config} */ + module.exports = { - content: [], + content: ["./src/**/*.{js,jsx}"], theme: { - extend: {}, + extend: { + screens: { + xs: "480px", + }, + fontFamily: { + inter: ["Inter var", "sans-serif"], + }, + boxShadow: { + card: "0 0 1px 0 rgba(189,192,207,0.06),0 10px 16px -1px rgba(189,192,207,0.2)", + cardhover: + "0 0 1px 0 rgba(189,192,207,0.06),0 10px 16px -1px rgba(189,192,207,0.4)", + }, + }, }, plugins: [], -} +};