Set version in the footer to fixed, fix main container height

This commit is contained in:
Lukáš Kucharczyk 2023-01-04 17:28:51 +01:00
parent 40810256aa
commit 59cf620ff3
Signed by: lukas
SSH Key Fingerprint: SHA256:vMuSwvwAvcT6htVAioMP7rzzwMQNi3roESyhv+nAxeg
2 changed files with 4 additions and 3 deletions

View File

@ -4,4 +4,5 @@
* Add homepage, link to it from the logo
* Make it possible to add a new platform
* Save calculated duration to database if both timestamps are set
* Improve session listing
* Improve session listing
* Set version in the footer to fixed, fix main container height

View File

@ -12,7 +12,7 @@
</head>
<body class="dark">
<div class="dark:bg-gray-800 h-screen">
<div class="dark:bg-gray-800 min-h-screen">
<nav class="mb-4 bg-white dark:bg-gray-900 border-gray-200 rounded">
<div class="container flex flex-wrap items-center justify-between mx-auto">
<a href="{% url 'index' %}" class="flex items-center">
@ -40,7 +40,7 @@
{% block content %}No content here.{% endblock %}
</div>
{% load version %}
<span id="version-info" class="absolute left-1 bottom-1 text-xs text-slate-300 dark:text-slate-600">{% version %} ({% version_date %})</span>
<span class="fixed left-2 bottom-2 text-xs text-slate-300 dark:text-slate-600">{% version %} ({% version_date %})</span>
</body>
</html>