Skip to content

fix: add spacing below FOSSUnited logo on about page#16

Closed
fossdot wants to merge 2 commits into
mainfrom
claude/issue-15-20260313-2041
Closed

fix: add spacing below FOSSUnited logo on about page#16
fossdot wants to merge 2 commits into
mainfrom
claude/issue-15-20260313-2041

Conversation

@fossdot
Copy link
Copy Markdown
Owner

@fossdot fossdot commented Mar 13, 2026

Adds 16px of margin below the FOSSUnited logo in the "Supported by" section of the About page for better visual breathing room.

Closes #15

Generated with Claude Code

Adds margin-bottom: 16px and display: block to .about-supported img
for better visual breathing room below the logo.

Co-authored-by: Vishal Arya  <fossdot@users.noreply.github.com>
@netlify
Copy link
Copy Markdown

netlify Bot commented Mar 13, 2026

Deploy Preview for chic-puffpuff-6c1625 ready!

Name Link
🔨 Latest commit 5d2df2c
🔍 Latest deploy log https://app.netlify.com/projects/chic-puffpuff-6c1625/deploys/69b478cc10ea7f0008c612d8
😎 Deploy Preview https://deploy-preview-16--chic-puffpuff-6c1625.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@fossdot
Copy link
Copy Markdown
Owner Author

fossdot commented Mar 13, 2026

@claude the issue still exits #16

@claude
Copy link
Copy Markdown

claude Bot commented Mar 13, 2026

Claude finished @fossdot's task in 3m 16s —— View job


Fix pushed

Root cause: The <a> tag wrapping the FOSSUnited logo was display: inline by default. Having a display: block img inside an inline anchor makes margin-bottom unpredictable — the bottom spacing either collapses or doesn't behave consistently across browsers.

Fix: Added .about-supported a { display: block; } so the anchor becomes a proper block container. This ensures:

  • The img's margin-bottom: 16px creates reliable space below the logo

  • The margin: auto centering works correctly in the block formatting context

  • Gather context

  • Identify root cause — <a> wrapper was display: inline, breaking margin behaviour on the block <img> inside it

  • Added display: block to .about-supported a (content/about.md:172)

  • Committed and pushed
    | Branch: claude/issue-15-20260313-2041

The <a> wrapping the FOSSUnited logo was inline by default. A display:block
img inside an inline anchor causes margin-bottom and auto-margin centering
to behave unpredictably. Making the anchor display:block fixes this.

Co-authored-by: Vishal Arya  <fossdot@users.noreply.github.com>
@fossdot fossdot closed this Mar 13, 2026
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.

Need some gap after the fossunited logo in about page

1 participant