Commit babe6ea8 authored by Mahmoud Aglan's avatar Mahmoud Aglan

Fix long lists disappearing until browser zoom change

Change .card overflow from hidden to visible. The hidden overflow
caused Chrome to miscalculate paint regions for containers with
many child elements (chart of accounts, rules, etc.), resulting
in content being invisible until a repaint was triggered.
Co-Authored-By: 's avatarClaude Opus 4.6 <noreply@anthropic.com>
parent 05c8d350
...@@ -563,7 +563,7 @@ code { ...@@ -563,7 +563,7 @@ code {
border: 1px solid var(--border-light); border: 1px solid var(--border-light);
box-shadow: var(--shadow-sm); box-shadow: var(--shadow-sm);
margin-bottom: 0; margin-bottom: 0;
overflow: hidden; overflow: visible;
transition: box-shadow var(--duration-normal) var(--ease-out), transition: box-shadow var(--duration-normal) var(--ease-out),
transform var(--duration-normal) var(--ease-out), transform var(--duration-normal) var(--ease-out),
border-color var(--duration-normal) ease; border-color var(--duration-normal) ease;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment