Minor cleanup
This commit is contained in:
@@ -15,7 +15,7 @@ type Settings = {
|
||||
const defaultSettings: Settings = {
|
||||
zoomMode: 'keep',
|
||||
rightToLeft: true,
|
||||
singlePageView: false,
|
||||
singlePageView: true,
|
||||
displayOCR: true,
|
||||
textEditable: false,
|
||||
textBoxBorders: false,
|
||||
|
||||
@@ -2,4 +2,4 @@
|
||||
import Catalog from '$lib/components/Catalog.svelte';
|
||||
</script>
|
||||
|
||||
<Catalog />
|
||||
<div class="p-2"><Catalog /></div>
|
||||
|
||||
@@ -36,7 +36,10 @@
|
||||
}
|
||||
</script>
|
||||
|
||||
<div class="float-right"><Button outline color="red" on:click={onDelete}>Delete manga</Button></div>
|
||||
<div class="p-2">
|
||||
<div class="float-right">
|
||||
<Button outline color="red" on:click={onDelete}>Delete manga</Button>
|
||||
</div>
|
||||
<div class="volumes">
|
||||
{#if manga}
|
||||
{#each manga as volume}
|
||||
@@ -44,6 +47,7 @@
|
||||
{/each}
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<Modal bind:open={popupModal} size="xs" autoclose>
|
||||
<div class="text-center">
|
||||
|
||||
Reference in New Issue
Block a user