File tree Expand file tree Collapse file tree 4 files changed +28
-23
lines changed
Expand file tree Collapse file tree 4 files changed +28
-23
lines changed Original file line number Diff line number Diff line change 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}
Original file line number Diff line number Diff line change 11/** @type {import('postcss-load-config').Config } */
22const config = {
33 plugins : {
4- tailwindcss : { } ,
4+ '@ tailwindcss/postcss' : { } ,
55 } ,
66} ;
77
Original file line number Diff line number Diff line change 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
521body {
622 background-color : black;
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments