-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
41 lines (36 loc) · 1.05 KB
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
darkMode: "class",
theme: {
container: {
center: true,
padding: "1rem",
},
screens: {
xs: "450px",
// => @media (min-width: 450px) { ... }
sm: "575px",
// => @media (min-width: 576px) { ... }
md: "768px",
// => @media (min-width: 768px) { ... }
lg: "992px",
// => @media (min-width: 992px) { ... }
xl: "1200px",
// => @media (min-width: 1200px) { ... }
"2xl": "1400px",
// => @media (min-width: 1400px) { ... }
},
extend: {
boxShadow: {
signUp: "0px 5px 10px rgba(4, 10, 34, 0.2)",
one: "0px 2px 3px rgba(7, 7, 77, 0.05)",
sticky: "inset 0 -1px 0 0 rgba(0, 0, 0, 0.1)",
},
},
},
plugins: [],
};