Skip to content
Open
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 src/_includes/bio.njk
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

<div class="space-y-4 text-sm border-t border-[var(--border-color)] pt-6">
{% if location or country %}
<div class="flex items-center gap-3">
<div class="flex justify-end gap-2 text-right">
Comment thread
jbampton marked this conversation as resolved.
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

medium

This change introduces visual inconsistency in the profile sidebar. The location field is now right-aligned (justify-end), while the Email (line 33) and Website (line 41) fields are left-aligned. Furthermore, the reduction in gap (from gap-3 to gap-2) and the removal of items-center (which ensures the icon is vertically centered with the text) deviate from the established pattern in this list. To maintain a cohesive UI, it is recommended to keep the alignment consistent with the other contact details.

            <div class="flex items-center gap-3">

<span class="text-lg">📍</span>
<span class="text-[var(--text-muted)]">{{ location }}{% if location and country %}, {% endif %}{{ country }}</span>
Comment thread
jbampton marked this conversation as resolved.
</div>
Expand Down
Loading