Skip to content

Commit bee7206

Browse files
committed
updated Tailwind config
1 parent bfd607a commit bee7206

1 file changed

Lines changed: 12 additions & 9 deletions

File tree

tailwind.config.js

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
/** @type {import('tailwindcss').Config} */
22
module.exports = {
33
darkMode: 'class',
4-
content: [
5-
"./index.html", // For any HTML files in the root
6-
"./src/**/*.{js,jsx,ts,tsx}", // For all JS/JSX/TS/TSX files inside src folder
7-
],
8-
theme: {
9-
extend: {},
4+
content: [
5+
"./index.html",
6+
"./src/**/*.{js,jsx,ts,tsx}",
7+
],
8+
theme: {
9+
extend: {
10+
dropShadow: {
11+
glow: "0 0 8px rgba(255, 255, 255, 0.6)", // white glow
12+
},
1013
},
11-
plugins: [],
12-
}
13-
14+
},
15+
plugins: [],
16+
}

0 commit comments

Comments
 (0)