Skip to content

Commit b4dc448

Browse files
fix: style
1 parent 747290f commit b4dc448

File tree

3 files changed

+17
-11
lines changed

3 files changed

+17
-11
lines changed

Diff for: app/article/[[...categories]]/page.module.css

+8-8
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@
3131
text-3xl
3232
text-transparent;
3333
}
34+
}
3435

35-
.Articles {
36-
@apply grid
37-
grid-cols-1
38-
justify-center
39-
gap-4
40-
md:grid-cols-2
41-
lg:grid-cols-3;
42-
}
36+
.articles {
37+
@apply grid
38+
grid-cols-1
39+
justify-center
40+
gap-4
41+
md:grid-cols-2
42+
lg:grid-cols-3;
4343
}
4444
}

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"license": "MIT",
55
"type": "module",
66
"scripts": {
7-
"dev": "next dev --turbopack",
7+
"dev": "next dev",
88
"build": "next build",
99
"biome:ci": "biome ci ./",
1010
"biome:format:fix": "biome format --fix ./",

Diff for: styles/markdown.css

+8-2
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,9 @@
5959

6060
ol {
6161
@apply list-decimal
62-
pl-4;
62+
pl-4
63+
pb-4
64+
ml-4;
6365
}
6466

6567
blockquote {
@@ -90,6 +92,7 @@
9092

9193
code {
9294
@apply text-sm
95+
text-black
9396
bg-gray-200
9497
rounded
9598
p-1
@@ -102,8 +105,11 @@
102105
rounded
103106
p-4
104107
my-4
108+
border
109+
border-gray-400
105110
overflow-x-auto
106-
dark:bg-gray-800;
111+
dark:bg-gray-800
112+
dark:border-gray-600;
107113
}
108114

109115
img {

0 commit comments

Comments
 (0)