-
-
Notifications
You must be signed in to change notification settings - Fork 126
Expand file tree
/
Copy pathtailwind.config.js
More file actions
32 lines (32 loc) · 730 Bytes
/
tailwind.config.js
File metadata and controls
32 lines (32 loc) · 730 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/**/*.{html,js}", "./src/components/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
gridTemplateColumns: {
custom: "repeat(auto-fit, minmax(15rem, 1fr))",
},
backdropBlur: {
sm : "3px",
md: "6px"
},
colors: {
"gradLeft" : "#EFEFBB",
"gradRight" : "#D4D3DD",
},
padding: {
sm:"10px"
},
dropShadow: {
'3xl': '0 15px 10px rgba(0, 0, 0, 0.25)',
'4xl': [
'0 35px 35px rgba(0, 0, 0, 0.25)',
'0 45px 65px rgba(0, 0, 0, 0.25)'
]
}
},
},
plugins: [
require('tailwind-scrollbar')
]
};