From a17b1fc11e754b8b462439489a3c3e81a0ded4dd Mon Sep 17 00:00:00 2001 From: Erik Date: Fri, 13 Mar 2026 11:22:44 +0100 Subject: [PATCH] fix: layer burden meter fill correctly --- static/style.css | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/static/style.css b/static/style.css index fda96a06..43967337 100644 --- a/static/style.css +++ b/static/style.css @@ -824,8 +824,7 @@ body.noselect, body.noselect * { background: #0a0a0a; border: 1px solid var(--ac-border-light); position: relative; - display: flex; - flex-direction: column-reverse; + overflow: hidden; margin-bottom: 2px; margin-top: 12px; flex-shrink: 0; @@ -834,8 +833,13 @@ body.noselect, body.noselect * { .inv-burden-fill { width: 100%; background: var(--ac-green); + position: absolute; + left: 0; + right: 0; + bottom: 0; height: 0%; transition: height 0.3s ease; + z-index: 1; } .inv-burden-fill.is-safe { @@ -858,6 +862,7 @@ body.noselect, body.noselect * { text-align: center; font-size: 11px; color: var(--ac-gold); + z-index: 2; } .inv-pack-list {