From 23a4e77b0a865def13d76a88cff8306df1c44d7f Mon Sep 17 00:00:00 2001 From: IDeathByte <41571062+IDeathByte@users.noreply.github.com> Date: Thu, 4 Dec 2025 13:05:04 +0500 Subject: [PATCH] Fix for character card Fixing the issue, when card data makes unreadable, when LLM generates more than 2 strings for appearance Make it scrollable --- style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style.css b/style.css index 26862de..deda25c 100644 --- a/style.css +++ b/style.css @@ -1838,7 +1838,7 @@ body:has(.rpg-panel.rpg-position-left) #sheld { max-height: clamp(200px, 18vh, 250px); box-sizing: border-box; /* Include padding and border in width calculation */ flex-shrink: 0; /* Prevent cards from shrinking */ - overflow: hidden; + overflow: auto; scrollbar-width: thin; scrollbar-color: var(--rpg-border) transparent; }