summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorStas Medvedev <medvedevsa97@gmail.com>2024-06-11 03:04:31 +0300
committerStas Medvedev <medvedevsa97@gmail.com>2024-06-11 03:04:31 +0300
commit3805407b0868aeccf7462a68c1d86540764bc02f (patch)
tree924a91b07e8c270655130d15d4b911459ebe8e47 /templates
parent888de0a90ae0e04ea9e20063d9a6cbfa9a20e9e0 (diff)
fix html
Diffstat (limited to 'templates')
-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>