Skip to content

Commit b153d54

Browse files
committed
installed tailwind css
1 parent 2e76c52 commit b153d54

File tree

4 files changed

+86
-0
lines changed

4 files changed

+86
-0
lines changed

client/package-lock.json

Lines changed: 80 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,13 @@
1818
"@types/react": "^19.1.16",
1919
"@types/react-dom": "^19.1.9",
2020
"@vitejs/plugin-react": "^5.0.4",
21+
"autoprefixer": "^10.4.21",
2122
"eslint": "^9.36.0",
2223
"eslint-plugin-react-hooks": "^5.2.0",
2324
"eslint-plugin-react-refresh": "^0.4.22",
2425
"globals": "^16.4.0",
26+
"postcss": "^8.5.6",
27+
"tailwindcss": "^4.1.14",
2528
"vite": "^7.1.7"
2629
}
2730
}

client/src/index.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,5 @@ button:focus-visible {
6666
background-color: #f9f9f9;
6767
}
6868
}
69+
70+
@import "tailwindcss";

client/src/main.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { createRoot } from 'react-dom/client'
33
import './index.css'
44
import App from './App.jsx'
55

6+
67
createRoot(document.getElementById('root')).render(
78
<StrictMode>
89
<App />

0 commit comments

Comments
 (0)