Skip to content

Comments

Display footer buttons in single row on mobile#62

Draft
Copilot wants to merge 2 commits intomainfrom
copilot/improve-mobile-button-layout
Draft

Display footer buttons in single row on mobile#62
Copilot wants to merge 2 commits intomainfrom
copilot/improve-mobile-button-layout

Conversation

Copy link

Copilot AI commented Feb 15, 2026

Low usage of "Make your own" button due to poor placement. Consolidates all three action buttons (Reset, Download Images, Make Your Own) into a single row on mobile devices.

Changes

HTML

  • Wrapped buttons in .button-row flex container
  • Moved "Make Your Own" button from bottom of footer to main button group

CSS

  • Desktop: centered row with gap
  • Mobile (≤768px): equal-width distribution via flex: 1
.button-row {
    display: flex;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .button-row {
        flex-wrap: nowrap;
        gap: 5px;
    }
    
    .button-row .btn {
        flex: 1;
        padding: 12px 8px;
        font-size: 0.85em;
    }
}

Screenshots

Desktop
Desktop view

Mobile
Mobile view

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • checkpoint.prisma.io
    • Triggering command: /opt/hostedtoolcache/node/24.13.0/x64/bin/node /opt/hostedtoolcache/node/24.13.0/x64/bin/node /home/REDACTED/work/bingo-string/bingo-string/node_modules/prisma/build/child {"product":"prisma","version":"5.22.0","cli_install_type":"local","information":"","local_timestamp":"2026-02-15T03:44:35Z","project_hash":"eb3f3be5","cli_path":"/home/REDACTED/work/bingo-string/bingo-string/node_modules/.bin/prisma","cli_path_hash":"9ad344 (dns block)

If you need me to access, download, or install something from one of these locations, you can either:

Original prompt

Usage of "make your own" button is low. All buttons in the same row "Reset", "Download images", "Make your own" so it takes 100% width on the same row on mobile

Open a PR for this


💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

@vercel
Copy link

vercel bot commented Feb 15, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
bingo-string Ready Ready Preview, Comment Feb 15, 2026 3:45am

Co-authored-by: ghostleek <44336310+ghostleek@users.noreply.github.com>
Copilot AI changed the title [WIP] Update mobile layout for action buttons Display footer buttons in single row on mobile Feb 15, 2026
Copilot AI requested a review from ghostleek February 15, 2026 03:47
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