Skip to content

Make webapp input row responsive on mobile#355

Merged
henryiii merged 3 commits into
mainfrom
copilot/fix-mobile-formatting-issue
Apr 3, 2026
Merged

Make webapp input row responsive on mobile#355
henryiii merged 3 commits into
mainfrom
copilot/fix-mobile-formatting-issue

Conversation

Copilot AI commented Apr 3, 2026

Copy link
Copy Markdown
Contributor

On narrow/mobile viewports, the input row (Org/Repo, Branch/Tag, Show, Run) was squished into a cramped horizontal layout with no wrapping.

Change

Use MUI's responsive breakpoint props on the Stack to switch between column and row layouts:

- direction="row"
- alignItems="flex-start"
+ direction={{ xs: "column", sm: "row" }}
+ alignItems={{ xs: "stretch", sm: "flex-start" }}
  • xs (mobile): inputs stack vertically and stretch to full container width
  • sm+ (tablet/desktop): retains existing horizontal layout unchanged

Copilot AI changed the title [WIP] Fix mobile formatting for entry boxes Make webapp input row responsive on mobile Apr 3, 2026
Copilot AI requested a review from henryiii April 3, 2026 19:33
@henryiii henryiii marked this pull request as ready for review April 3, 2026 19:41
@henryiii

henryiii commented Apr 3, 2026

Copy link
Copy Markdown
Collaborator

@copilot bump the version to 1.0.1

Copilot AI commented Apr 3, 2026

Copy link
Copy Markdown
Contributor Author

@copilot bump the version to 1.0.1

Done in bcf42a7 — bumped version to 1.0.1 in both package.json and pyproject.toml.

@henryiii henryiii merged commit c983b44 into main Apr 3, 2026
13 checks passed
@henryiii henryiii deleted the copilot/fix-mobile-formatting-issue branch April 3, 2026 20:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants