mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-25 15:15:44 -03:00
feat(ui): increase settings modal width and adjust height for better responsiveness
- Increase modal width from 800px to 1000px to accommodate more content - Change height from fixed 600px to dynamic calculation based on viewport height - Maintain responsive constraints with max-width and max-height properties
This commit is contained in:
@@ -20,8 +20,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.settings-modal {
|
.settings-modal {
|
||||||
width: 800px;
|
width: 1000px;
|
||||||
height: 600px;
|
height: calc(92vh - var(--header-height, 48px));
|
||||||
max-width: 95vw;
|
max-width: 95vw;
|
||||||
max-height: 90vh;
|
max-height: 90vh;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|||||||
Reference in New Issue
Block a user