Skip to content

Commit 4a6c1bc

Browse files
committed
[bug/118] TableOfContent 디테일 수정
1 parent 25f38c6 commit 4a6c1bc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/scripts/table-contents.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export const initializeTableContents = () => {
3030
const tocTitle = document.createElement('p');
3131
const tocList = document.createElement('ul');
3232

33-
tocTitle.classList.add('text-black', 'font-light', 'text-2xl', 'pb-5');
33+
tocTitle.classList.add('text-black', 'font-light', 'text-lg', 'pb-5');
3434
tocTitle.textContent = 'Table of contents';
3535

3636
const headingMap: Record<string, HTMLLIElement> = {};
@@ -41,7 +41,7 @@ export const initializeTableContents = () => {
4141
'max-w-64',
4242
'font-extralight',
4343
'hover:bg-gray-300',
44-
'hover:font-light',
44+
'hover:font-semibold',
4545
'cursor-pointer',
4646
'truncate'
4747
);

0 commit comments

Comments
 (0)