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