summary refs log tree commit diff stats
path: root/tailwind.config.js
blob: d4be7aa116be5b70b5ab8c2ac43d34fcdad618df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/** @type {import('tailwindcss').Config} */
module.exports = {
  content: ["*.html", "./src/**/*.rs"],
  theme: {
    screens: {
      sm: "480px",
      md: "768px",
      lg: "1020px",
      xl: "1440px",
    },
    fontFamily: {
      sans: ["Inter", "sans-serif"],
    },
  },
  darkMode: "class",
  plugins: [
    // require('@tailwindcss/forms'),
    // require("@tailwindcss/typography"),
    // require("preline/plugin")
  ],
};