mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-09-21 03:01:27 -03:00
37f2cba72d
The action bar forced .controls-right (Doctor) onto its own full-width row below 1500px. On high-DPI displays a maximized window reports a CSS viewport of ~1280-1440px, so the Doctor button wrapped even with ~500px of free space next to the action buttons. - .actions / .action-buttons now wrap only on real overflow (flex-wrap plus min-width: 0) instead of a viewport breakpoint. - .controls-right relies on its auto margin to stay right-aligned on either row, so the width: 100% + margin-top: 8px override is gone. - Lower the button min-width floor from 100px to 90px; the old floor alone made the row overflow the 1400px container at wide viewports. - The <=1500px breakpoint now only tightens the buttons (min-width: 0, padding, gap) and no longer forces a wrap; drop the no-op 0.8em font-size override (base is already 0.85em). - Keep the stacked mobile layout below 768px. Verified in headless Chrome against the real stylesheet: one row with the Doctor button inline down to 1200px (down to 1000px for shorter locales), right-aligned wrap only when the content genuinely does not fit, and no horizontal overflow at any width.