File size: 606 Bytes
b3594fb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/** @type {import("tailwindcss").Config} */
const defaultTheme = require("tailwindcss/defaultTheme");

module.exports = {
  content: ["./src/**/*.{js,ts,jsx,tsx}"],
  theme: {
    screens: {
      xs: "300px",

      "sm-h": { raw: "(min-height: 700px)" },
      "md-h": { raw: "(min-height: 800px)" },
      "lg-h": { raw: "(min-height: 1000px)" },

      ...defaultTheme.screens,
    },
    extend: {
      boxShadow: {
        "3xl": "0 40px 70px -15px rgba(0, 0, 0, 0.40)", // Customize the shadow value according to your preferences.
      },
    },
  },
  plugins: [require("tailwindcss-radix")],
};