Skip to content

Commit 3cef14b

Browse files
committed
design: NoteList 컴포넌트 UI 개선
1 parent 5d5097a commit 3cef14b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

frontend/src/components/sidebar/NoteList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export default function NoteList({ className }: NoteListProps) {
3434
<button
3535
onClick={() => handleNoteClick(id)}
3636
key={id}
37-
className="group flex flex-row justify-between rounded-sm px-2 py-1 hover:bg-neutral-100"
37+
className="group flex flex-row justify-between rounded-sm px-3 py-1 hover:bg-neutral-100"
3838
>
3939
<div className="flex flex-row gap-1">
4040
<div>{title}</div>

frontend/src/components/sidebar/Tools.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export default function Tools() {
2424
content: [
2525
{
2626
type: "paragraph",
27-
content: [{ type: "text", text: "This is page 1" }],
27+
content: [{ type: "text", text: "" }],
2828
},
2929
],
3030
},
@@ -35,9 +35,9 @@ export default function Tools() {
3535
}}
3636
>
3737
<div>
38-
<PencilLine width={20} height={20} widths={1} />
38+
<PencilLine width={20} height={20} widths={1} color="#7f796d" />
3939
</div>
40-
<div>새 페이지 작성</div>
40+
<div className="text-neutral-600">새 페이지 작성</div>
4141
</button>
4242
);
4343
}

0 commit comments

Comments
 (0)