Skip to content

Commit 5040958

Browse files
feat: use tailwind for styling and refactor components (#18)
* feat: use tailwind for styling and refactor components * fix: vulnerability
1 parent 22c0169 commit 5040958

36 files changed

Lines changed: 2293 additions & 2566 deletions

package-lock.json

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

package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
"@semantic-release/changelog": "^6.0.3",
3131
"@semantic-release/git": "^10.0.1",
3232
"@semantic-release/npm": "^13.1.2",
33+
"@tailwindcss/postcss": "^4.1.17",
3334
"@testing-library/jest-dom": "^6.9.1",
3435
"@testing-library/react": "^16.3.0",
3536
"@testing-library/user-event": "^14.6.1",
@@ -38,6 +39,7 @@
3839
"@types/react-dom": "^19.2.3",
3940
"@vitejs/plugin-react": "^5.1.1",
4041
"@vitest/ui": "^4.0.10",
42+
"autoprefixer": "^10.4.22",
4143
"eslint": "^9.39.1",
4244
"eslint-config-prettier": "^10.1.8",
4345
"eslint-plugin-react-hooks": "^7.0.1",
@@ -46,8 +48,10 @@
4648
"happy-dom": "^20.0.10",
4749
"husky": "^9.1.7",
4850
"jsdom": "^27.2.0",
51+
"postcss": "^8.5.6",
4952
"prettier": "^3.6.2",
5053
"semantic-release": "^25.0.2",
54+
"tailwindcss": "^4.1.17",
5155
"tsx": "^4.20.6",
5256
"typescript": "~5.9.3",
5357
"typescript-eslint": "^8.47.0",

postcss.config.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
export default {
2+
plugins: {
3+
'@tailwindcss/postcss': {},
4+
autoprefixer: {},
5+
},
6+
}
7+

0 commit comments

Comments
 (0)