From b2ca5a6713c25b2d61c4c90e79e2187266038019 Mon Sep 17 00:00:00 2001 From: DebaucheryLibrarian Date: Sun, 11 Jan 2026 02:44:44 +0100 Subject: [PATCH] Fixed scene tile actor alignment so it's less likely to cut-off letters. --- components/scenes/tile.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/scenes/tile.vue b/components/scenes/tile.vue index 217d8f5..2995aaa 100644 --- a/components/scenes/tile.vue +++ b/components/scenes/tile.vue @@ -238,7 +238,8 @@ const favorited = ref(props.scene.stashes.some((sceneStash) => sceneStash.id === } .actors { - height: 1rem; + height: 1.15rem; + margin-bottom: .1rem; overflow: hidden; white-space: pre-wrap; }