File tree 9 files changed +33
-53
lines changed
9 files changed +33
-53
lines changed Original file line number Diff line number Diff line change 9
9
"lint" : " next lint"
10
10
},
11
11
"dependencies" : {
12
- "autoprefixer " : " 10.4.20 " ,
13
- "babel-plugin-react-compiler" : " ^19.0.0-beta-201e55d-20241215 " ,
14
- "eslint" : " 9.17.0 " ,
15
- "eslint-config-next" : " 15.1.2 " ,
16
- "next" : " 15.1.2 " ,
17
- "postcss" : " 8.4.49 " ,
12
+ "@tailwindcss/postcss " : " ^4.0.7 " ,
13
+ "babel-plugin-react-compiler" : " ^19.0.0-beta-e552027-20250112 " ,
14
+ "eslint" : " 9.20.1 " ,
15
+ "eslint-config-next" : " 15.1.7 " ,
16
+ "next" : " 15.1.7 " ,
17
+ "postcss" : " 8.5.2 " ,
18
18
"react" : " 19.0.0" ,
19
19
"react-dom" : " 19.0.0" ,
20
- "tailwind-merge" : " ^2.5.5 " ,
21
- "tailwindcss" : " 3.4.17 " ,
22
- "typescript" : " 5.7.2 "
20
+ "tailwind-merge" : " ^3.0.1 " ,
21
+ "tailwindcss" : " ^4.0.7 " ,
22
+ "typescript" : " 5.7.3 "
23
23
},
24
24
"devDependencies" : {
25
- "@types/node" : " ^22.10.2 " ,
26
- "@types/react" : " 19.0.2 " ,
27
- "@types/react-dom" : " 19.0.2 " ,
28
- "prettier" : " ^3.4.2 "
25
+ "@types/node" : " ^22.13.4 " ,
26
+ "@types/react" : " 19.0.10 " ,
27
+ "@types/react-dom" : " 19.0.4 " ,
28
+ "prettier" : " ^3.5.1 "
29
29
}
30
30
}
Original file line number Diff line number Diff line change 1
1
module . exports = {
2
2
plugins : {
3
- tailwindcss : { } ,
4
- autoprefixer : { } ,
3
+ '@tailwindcss/postcss' : { } ,
5
4
} ,
6
5
}
Original file line number Diff line number Diff line change 1
- @tailwind base;
2
- @tailwind components;
3
- @tailwind utilities;
1
+ @import 'tailwindcss' ;
2
+
3
+ @theme {
4
+ --color-primary-50 : # 6993a5 ;
5
+ --color-primary-100 : # 618ca0 ;
6
+ --color-primary-200 : # 577c91 ;
7
+ --color-primary-300 : # 4d6c81 ;
8
+ --color-primary-400 : # 445c71 ;
9
+ --color-primary-500 : # 3a4d61 ;
10
+ --color-primary-600 : # 303f51 ;
11
+ --color-primary-700 : # 273241 ;
12
+ --color-primary-800 : # 1d2531 ;
13
+ --color-primary-900 : # 141821 ;
14
+ --color-primary-950 : # 0f1219 ;
15
+ }
4
16
5
17
: root {
6
18
color-scheme : only dark;
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ const Lanyard: FC = () => {
93
93
className = { twMerge (
94
94
'text-green-400 font-semibold' ,
95
95
jellyfin &&
96
- 'text-transparent bg-clip-text inline-block bg-gradient -to-br from-purple-500 to-sky-500 drop-shadow-md' ,
96
+ 'text-transparent bg-clip-text inline-block bg-linear -to-br from-purple-500 to-sky-500 drop-shadow-md' ,
97
97
) }
98
98
>
99
99
I'm currently { doing . spotify ? 'listening to' : `watching` }
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ const AboutMe: FC = () => (
50
50
< div className = "flex gap-4" >
51
51
< div className = "sm:flex items-center hidden" >
52
52
< img
53
- className = "object-cover object-center w-44 h-44 rounded-md shadow min-w-32"
53
+ className = "object-cover object-center w-44 h-44 rounded-md shadow-sm min-w-32"
54
54
width = { 176 }
55
55
height = { 176 }
56
56
src = "https://t.pics/me.webp"
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { FC } from 'react';
2
2
3
3
const Footer : FC = ( ) => (
4
4
< footer className = "bg-primary-800 text-gray-500 px-3 my-2 flex" >
5
- < div className = "flex- shrink px-2 flex gap-4" >
5
+ < div className = "shrink px-2 flex gap-4" >
6
6
< a
7
7
href = "https://github.com/timcole/timcole.me"
8
8
target = "_blank"
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ const Positions: FC = () => {
100
100
</ span >
101
101
< span className = "mt-1 text-primary-400" > { date } </ span >
102
102
</ div >
103
- < div className = "text-gray-300 md:flex- grow flex-col gap-3 flex" >
103
+ < div className = "text-gray-300 md:grow flex-col gap-3 flex" >
104
104
{ description }
105
105
</ div >
106
106
</ div >
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments