aboutsummaryrefslogtreecommitdiff
path: root/tailwind.config.js
blob: d6359c873d26629737fe3a9394ef68d9df04d45b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
module.exports = {
    purge: ["./src/**/*.html", "./src/**/*.jsx", "./src/**/*.js"],
    theme: {
        extend: {
            screens: {
                xs: { max: "400px" },
            },
        },
    },
    variants: {
        textColor: ["responsive", "hover", "focus", "group-hover"],
    },
};