Merge pull request #2271 from unraid/fix/ui-dialog-min-max-size

fix: ui-dialog min and max sizes
This commit is contained in:
tom mortensen
2025-06-25 10:12:15 -07:00
committed by GitHub

View File

@@ -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;