Skip to content

fix: adjust Footer component styling for improved layout - #37

Merged
roble merged 1 commit into
mainfrom
dev
Apr 20, 2026
Merged

fix: adjust Footer component styling for improved layout#37
roble merged 1 commit into
mainfrom
dev

Conversation

@roble

@roble roble commented Apr 20, 2026

Copy link
Copy Markdown
Collaborator

This pull request makes a small styling adjustment to the AuthCardLayout.vue layout. The spacing above and below the Footer component has been increased for improved visual separation.

Copilot AI review requested due to automatic review settings April 20, 2026 20:04
@roble
roble merged commit 5a50498 into main Apr 20, 2026
2 checks passed

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR adjusts the AuthCardLayout.vue layout spacing around the Footer component to create more visual separation on auth pages.

Changes:

  • Increased the top spacing before the Footer (mt-6mt-16).
  • Added additional padding via a new pt-35 class on the Footer.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

<slot name="outside" />
</div>
<Footer class="mt-6 w-full" />
<Footer class="mt-16 w-full pt-35" />

Copilot AI Apr 20, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR description mentions increasing spacing above and below the Footer, but this change only increases top margin (mt-16) and top padding (pt-*). If bottom spacing is desired, consider adding bottom margin/padding (e.g. mb-* or py-*) rather than (or in addition to) pt-*.

Copilot uses AI. Check for mistakes.
<slot name="outside" />
</div>
<Footer class="mt-6 w-full" />
<Footer class="mt-16 w-full pt-35" />

Copilot AI Apr 20, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

pt-35 is not a standard Tailwind spacing utility, and there’s no Tailwind config in the repo defining a custom 35 spacing step. This class will likely be ignored/purged, so the intended padding won’t apply. Use a valid spacing token (e.g. pt-32/pt-36) or an arbitrary value like pt-[35px] instead.

Suggested change
<Footer class="mt-16 w-full pt-35" />
<Footer class="mt-16 w-full pt-[35px]" />

Copilot uses AI. Check for mistakes.
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