style: move next chapter button to the left side toolbar

main
I Luk Kim 3 weeks ago
parent 1e45744ee9
commit f4b669c26a

@ -57,6 +57,17 @@ export function ViewerToolbar({
</svg> </svg>
</button> </button>
<button
className="toolbar-btn chapter-nav-btn"
title="다음화"
disabled={!hasNext}
onClick={(e) => { e.stopPropagation(); onNextChapter(); }}
>
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2.5">
<path d="M5 12h14M12 5l7 7-7 7"/>
</svg>
</button>
</div> </div>
{/* Center: Title + page info */} {/* Center: Title + page info */}
@ -110,17 +121,7 @@ export function ViewerToolbar({
</button> </button>
</div> </div>
<button
className="toolbar-btn chapter-nav-btn"
title="다음화"
disabled={!hasNext}
onClick={(e) => { e.stopPropagation(); onNextChapter(); }}
>
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2.5">
<path d="M5 12h14M12 5l7 7-7 7"/>
</svg>
</button>
{/* Settings */} {/* Settings */}
<button className="toolbar-btn" title="설정 (S)" onClick={(e) => { e.stopPropagation(); onToggleSettings(); }}> <button className="toolbar-btn" title="설정 (S)" onClick={(e) => { e.stopPropagation(); onToggleSettings(); }}>

Loading…
Cancel
Save