From f8fe11174680997344fdf9a6cb3d5f33be09e59a Mon Sep 17 00:00:00 2001 From: Zack Spear Date: Tue, 24 Jun 2025 16:18:55 -0700 Subject: [PATCH] fix: ui-dialog min and max sizes - Set width to 100% and max-width to 100rem for better layout control. - Adjusted min-height to 35vh while maintaining max-height at 70vh for enhanced flexibility. This change aims to improve the responsiveness of the icon-zip component. --- emhttp/plugins/dynamix/styles/default-dynamix.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/emhttp/plugins/dynamix/styles/default-dynamix.css b/emhttp/plugins/dynamix/styles/default-dynamix.css index b88cadb95..756ee368f 100644 --- a/emhttp/plugins/dynamix/styles/default-dynamix.css +++ b/emhttp/plugins/dynamix/styles/default-dynamix.css @@ -1465,7 +1465,8 @@ div.icon-zip { left: 50% !important; transform: translate(-50%, -50%) !important; box-sizing: border-box; - min-width: 95vw; + width: 100% !important; + max-width: 100rem; * { box-sizing: border-box; @@ -1476,7 +1477,8 @@ div.icon-zip { flex-direction: column; align-items: center; height: auto !important; - max-height: 70vh; + min-height: 35vh !important; + max-height: 70vh !important; overflow-y: auto; padding-top: 2rem; padding-bottom: 2rem;