summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--templates/partials/about.html8
1 files changed, 5 insertions, 3 deletions
diff --git a/templates/partials/about.html b/templates/partials/about.html
index e077043..b9dc26d 100644
--- a/templates/partials/about.html
+++ b/templates/partials/about.html
@@ -26,17 +26,19 @@
<p class="w-full ">
Уже вычислил тебя по ip:
</p>
- <div class="w-full flex flex-row justify-around">
+ <div class="w-full flex flex-wrap justify-around">
<span>😎</span>
<a class="block text-center underline decoration-primary-300" href="https://ip-api.com">
{{client_geo['query']}}
</a>
<span>😎</span>
- {% if 'city' in client_geo %}
+ </div>
+ {% if 'city' in client_geo %}
+ <div class="flex w-full">
<p>{{client_geo['country']}}</p>
<p>{{client_geo['city']}}</p>
- {% endif %}
</div>
+ {% endif %}
</div>