Skip to content

Commit 2bded12

Browse files
committed
Fix location overlap on index page user locations
1 parent ef98585 commit 2bded12

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/index.njk

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ layout: false
3232
{% set location = person.data.location %}
3333
{% if location or country %}
3434
<span class="shrink-0 text-[10px] bg-[var(--bg-footer)] text-[var(--text-muted)] px-2 py-1 rounded font-bold uppercase border border-[var(--border-color)]">
35-
{{ location }}{% if location and country %}, {% endif %}{{ country }}
35+
{{ location }}
36+
{% if location and country %}<br>{% endif %}
37+
{{ country }}
3638
</span>
3739
{% endif %}
3840
</div>

0 commit comments

Comments
 (0)