Set version in the footer to fixed, fix main container height
This commit is contained in:
parent
40810256aa
commit
59cf620ff3
|
@ -5,3 +5,4 @@
|
||||||
* Make it possible to add a new platform
|
* Make it possible to add a new platform
|
||||||
* Save calculated duration to database if both timestamps are set
|
* 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
|
|
@ -12,7 +12,7 @@
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class="dark">
|
<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">
|
<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">
|
<div class="container flex flex-wrap items-center justify-between mx-auto">
|
||||||
<a href="{% url 'index' %}" class="flex items-center">
|
<a href="{% url 'index' %}" class="flex items-center">
|
||||||
|
@ -40,7 +40,7 @@
|
||||||
{% block content %}No content here.{% endblock %}
|
{% block content %}No content here.{% endblock %}
|
||||||
</div>
|
</div>
|
||||||
{% load version %}
|
{% 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>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
Loading…
Reference in New Issue