Skip to content

Refine about page image section with balanced side-by-side layout - #1

Open
toej93 with Copilot wants to merge 1 commit into
masterfrom
copilot/update-image-layout-about-md
Open

Refine about page image section with balanced side-by-side layout#1
toej93 with Copilot wants to merge 1 commit into
masterfrom
copilot/update-image-layout-about-md

Conversation

Copilot AI commented Jul 23, 2026

Copy link
Copy Markdown

The climbing and cycling photos were rendered as stacked block elements with mismatched apparent sizes (600px vs 300px native widths), and lacked captions.

Changes

  • _pages/about.md: Replaced sequential <figure> blocks with a flex container:
    • flex-wrap: wrap for clean stacking on narrow viewports
    • flex: 1 1 320px; max-width: 420px on each figure to equalize visual sizing regardless of source image dimensions
    • <figcaption> labels beneath each photo
    • width: 100%; height: auto on images so they fill their column responsively
<div style="display: flex; gap: 1.5rem; align-items: flex-start; justify-content: center; flex-wrap: wrap;">
  <figure style="margin: 0; text-align: center; flex: 1 1 320px; max-width: 420px;">
    <img src="...climbing.jpg" alt="Climbing" style="width: 100%; height: auto; display: block;" />
    <figcaption>Climbing</figcaption>
  </figure>
  <figure style="margin: 0; text-align: center; flex: 1 1 320px; max-width: 420px;">
    <img src="...cycling.jpg" alt="Cycling" style="width: 100%; height: auto; display: block;" />
    <figcaption>Cycling</figcaption>
  </figure>
</div>

All other page content is untouched.

Copilot AI changed the title [WIP] Update image section layout in about.md Refine about page image section with balanced side-by-side layout Jul 23, 2026
Copilot AI requested a review from toej93 July 23, 2026 15:47
@toej93
toej93 marked this pull request as ready for review July 23, 2026 15:51
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