summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorWolfgang Müller2025-03-31 20:12:23 +0200
committerWolfgang Müller2025-03-31 20:12:23 +0200
commitf720d55f7a5a0f7a353adcb5a060ec731486965e (patch)
tree1300e7ea139758bde89bca9bcc88682a488d83e6
parent7206736845bb4d634c8fa001c61495b2e721c159 (diff)
downloadhircine-f720d55f7a5a0f7a353adcb5a060ec731486965e.tar.gz
frontend: Align card covers to the top left
Now that we've had some time to use hircine, we think that this is a better default. Oftentimes comics have covers that are double-sided, so it makes more sense to align the cover to the left.
-rw-r--r--frontend/src/lib/components/Card.svelte2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/lib/components/Card.svelte b/frontend/src/lib/components/Card.svelte
index 8cfe34d..8a2b047 100644
--- a/frontend/src/lib/components/Card.svelte
+++ b/frontend/src/lib/components/Card.svelte
@@ -44,7 +44,7 @@
{@render overlay?.()}
{#if details.cover}
<img
- class="h-full w-full object-cover object-[center_top]"
+ class="h-full w-full object-cover object-[left_top]"
width={details.cover.width}
height={details.cover.height}
src={src(details.cover)}