diff options
author | Wolfgang Müller | 2025-03-31 20:12:23 +0200 |
---|---|---|
committer | Wolfgang Müller | 2025-03-31 20:12:23 +0200 |
commit | f720d55f7a5a0f7a353adcb5a060ec731486965e (patch) | |
tree | 1300e7ea139758bde89bca9bcc88682a488d83e6 | |
parent | 7206736845bb4d634c8fa001c61495b2e721c159 (diff) | |
download | hircine-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.svelte | 2 |
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)} |