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