Skip to content

Commit 060bb0f

Browse files
committed
easy
1 parent 88f14e5 commit 060bb0f

File tree

4 files changed

+28
-23
lines changed

4 files changed

+28
-23
lines changed

package.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,27 @@
1313
},
1414
"dependencies": {
1515
"@elysiajs/eden": "1.2.0",
16-
"@prisma/client": "6.2.1",
17-
"@tanstack/react-query": "5.64.2",
16+
"@prisma/client": "6.3.0",
17+
"@tanstack/react-query": "5.65.1",
1818
"elysia": "1.2.10",
1919
"jose": "5.9.6",
2020
"next": "15.1.6",
2121
"react": "19.0.0",
2222
"react-dom": "19.0.0"
2323
},
2424
"devDependencies": {
25-
"@types/bun": "1.2.0",
26-
"@types/node": "22.10.10",
25+
"@tailwindcss/postcss": "^4.0.0",
26+
"@types/bun": "1.2.1",
27+
"@types/node": "22.12.0",
2728
"@types/react": "19.0.8",
2829
"@types/react-dom": "19.0.3",
2930
"eslint": "9.17.0",
3031
"eslint-config-next": "15.1.6",
3132
"postcss": "8.5.1",
3233
"prettier": "3.4.2",
33-
"prettier-plugin-tailwindcss": "0.6.11",
34-
"prisma": "6.2.1",
35-
"tailwindcss": "3.4.17",
34+
"prettier-plugin-tailwindcss": "^0.6.11",
35+
"prisma": "6.3.0",
36+
"tailwindcss": "^4.0.0",
3637
"typescript": "5.7.3"
3738
}
3839
}

postcss.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/** @type {import('postcss-load-config').Config} */
22
const config = {
33
plugins: {
4-
tailwindcss: {},
4+
'@tailwindcss/postcss': {},
55
},
66
};
77

src/app/globals.css

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
1-
@tailwind base;
2-
@tailwind components;
3-
@tailwind utilities;
1+
@import 'tailwindcss';
2+
3+
/*
4+
The default border color has changed to `currentColor` in Tailwind CSS v4,
5+
so we've added these compatibility styles to make sure everything still
6+
looks the same as it did with Tailwind CSS v3.
7+
8+
If we ever want to remove these styles, we need to add an explicit border
9+
color utility to any element that depends on these defaults.
10+
*/
11+
@layer base {
12+
*,
13+
::after,
14+
::before,
15+
::backdrop,
16+
::file-selector-button {
17+
border-color: var(--color-gray-200, currentColor);
18+
}
19+
}
420

521
body {
622
background-color: black;

tailwind.config.ts

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)