Skip to content

Commit 80bdf0f

Browse files
committed
Fixups
1 parent 05fe310 commit 80bdf0f

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

src/index.njk

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,9 @@ layout: false
3131
{% set country = person.data.country %}
3232
{% set location = person.data.location %}
3333
{% if location or country %}
34-
<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 }}
36-
{% if location and country %}<br>{% endif %}
37-
{{ country }}
34+
<span class="flex flex-col items-center 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+
{% if location %}<span>{{ location }}</span>{% endif %}
36+
{% if country %}<span>{{ country }}</span>{% endif %}
3837
</span>
3938
{% endif %}
4039
</div>

0 commit comments

Comments
 (0)