Skip to content
This repository was archived by the owner on Jul 28, 2026. It is now read-only.

Commit dba6923

Browse files
committed
fix: constrain docker section and name step next button to match card width
1 parent aa240fe commit dba6923

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

public/js/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1592,7 +1592,7 @@ function renderEggStep() {
15921592
? (images.find(([, img]) => img === createState.selectedDockerImage)?.[0] || createState.selectedDockerImage.split('/').pop().split(':').pop())
15931593
: 'Select an image';
15941594
dockerSection = html`
1595-
<div class="wizard-subsection" style="margin-top:24px">
1595+
<div class="wizard-subsection" style="margin-top:24px;max-width:480px">
15961596
<div class="wizard-step-title" style="font-size:1rem">Docker Image</div>
15971597
<p class="wizard-step-desc">Choose a Docker image for this egg</p>
15981598
<div class="custom-select" id="docker-select">
@@ -1634,7 +1634,7 @@ function renderNameStep() {
16341634
Allowed: letters, numbers, spaces, dots, dashes, underscores
16351635
</div>
16361636
</div>
1637-
<div class="wizard-actions">
1637+
<div class="wizard-actions" style="max-width:480px">
16381638
<button class="btn btn-ghost" id="wizard-back-btn"><i data-lucide="arrow-left" style="width:16px;height:16px"></i> Back</button>
16391639
<button class="btn btn-primary" id="wizard-next-btn" disabled>
16401640
Next <i data-lucide="arrow-right" style="width:16px;height:16px"></i>

0 commit comments

Comments
 (0)