Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion resources/js/layouts/AuthCardLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@ defineProps<{
</div>
<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.

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.
</div>
</template>
Loading