Release 15 - Revamp #38

Merged
ChaoticByte merged 27 commits from devel into main 2023-03-26 11:09:31 +00:00
2 changed files with 13 additions and 7 deletions
Showing only changes of commit 6c72b5059f - Show all commits

View file

@ -168,17 +168,21 @@ main {
pointer-events: visible;
}
/* FOOTER */
.footer {
.footer-container {
z-index: 900;
margin-top: auto;
pointer-events: none;
}
.footer {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
flex-wrap: wrap;
margin-top: auto;
padding-top: 3rem;
margin-top: 3rem;
padding-bottom: .3rem;
text-align: center;
pointer-events: initial;
}
.footer div {
font-size: .95rem;

View file

@ -1,6 +1,8 @@
{% load i18n %}
<div class="footer">
<footer class="footer-container">
<div class="footer">
<div>Version {{ app_version }}</div>
<div>Copyright (C) 2021, Julian Müller (ChaoticByte)</div>
</div>
</div>
</footer>