Skip to content

Commit 7f38b14

Browse files
committed
インデント方法の修正
1 parent dd903f8 commit 7f38b14

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

app/sidebar.tsx

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,9 @@ export function Sidebar() {
5353
<Link href={`#${idx+1}`}>{section.title}</Link>
5454
</li>
5555
:
56-
<ul key={idx} className="ml-3 mt-2 text-sm">
57-
<li>
58-
<Link href={`#${idx+1}`}>{section.title}</Link>
59-
</li>
60-
</ul>
56+
<li key={idx} style={{ marginLeft: '1em' }}>
57+
<Link href={`#${idx+1}`}>{section.title}</Link>
58+
</li>
6159
))}
6260
</ul>
6361
)}

0 commit comments

Comments
 (0)