diff --git a/src/pages/[manga]/index.svelte b/src/pages/[manga]/index.svelte index ea09bd4..ceed722 100644 --- a/src/pages/[manga]/index.svelte +++ b/src/pages/[manga]/index.svelte @@ -144,11 +144,11 @@ {#each chapters.results.filter(c => c.data.attributes.translatedLanguage === "en") as chapter} - {chapter.data.attributes.volume ? "Vol " + chapter.data.attributes.volume : ""} - Chapter {chapter.data.attributes.chapter} + {chapter.data.attributes.volume ? "Vol " + chapter.data.attributes.volume : ""} + Chapter {chapter.data.attributes.chapter} {chapter.data.attributes.title} - prepare(chapter)}>Download - View + prepare(chapter)}>Download + View {/each} @@ -160,6 +160,9 @@ main { font-size: 1.1rem; } + .no-wrap { + white-space: nowrap; + } tbody { list-style-type: disc; }