From b5ae4c22c197ef70e12ead88277dde2856447634 Mon Sep 17 00:00:00 2001 From: John Factotum <50942278+johnfactotum@users.noreply.github.com> Date: Mon, 4 Nov 2024 05:30:12 +0800 Subject: [PATCH] CBZ: remove body margin Fixes https://github.com/johnfactotum/foliate/issues/1421 --- comic-book.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comic-book.js b/comic-book.js index ea1bd82..d3bb575 100644 --- a/comic-book.js +++ b/comic-book.js @@ -5,7 +5,7 @@ export const makeComicBook = ({ entries, loadBlob, getSize }, file) => { if (cache.has(name)) return cache.get(name) const src = URL.createObjectURL(await loadBlob(name)) const page = URL.createObjectURL( - new Blob([``], { type: 'text/html' })) + new Blob([``], { type: 'text/html' })) urls.set(name, [src, page]) cache.set(name, page) return page