fixed footer to bottom with hot glue
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Roxie Gibson 2022-01-13 09:51:37 +00:00
parent 1543fb33cc
commit d6b96f6fd5
Signed by: roxxers
GPG Key ID: 5D0140EDEE123F4D
2 changed files with 33 additions and 18 deletions

View File

@ -28,6 +28,17 @@ body {
font-family: "Gudea", "sans-serif";
color: #333;
margin: 0;
}
body {
display: flex;
min-height: 100vh;
flex-direction: column;
}
#not-footer {
flex: 1;
}
input {
@ -139,3 +150,4 @@ footer .content span {
.container {
padding-bottom: 2rem !important;
}

View File

@ -15,24 +15,27 @@
{% endblock %}
</head>
<body>
<div class="container">
<div id="content">{% block content %}{% endblock %}</div>
</div>
<footer class="footer">
<div class="content footer-links">
<span>
<a href="https://panduan.lumbung.space/share/684ea8a2-bc47-4111-acf2-f88a200b640f">Imprint</a>
</span>
<span>
<a href="https://panduan.lumbung.space/share/8a742222-2561-4d67-a9f1-6c7c4fe8bead">Privacy Policy</a>
</span>
<span>
<a href="https://panduan.lumbung.space/share/272026ff-57fd-4894-8d68-58606c77044c">FAQ</a>
</span>
<span>
<a href="https://panduan.lumbung.space/share/ece8e392-7b21-4379-bd82-a11e06ebf1fb">Community Guidelines</a>
</span>
<div id="not-footer">
<div class="container">
<div id="content">{% block content %}{% endblock %}</div>
</div>
</div>
</footer>
<footer class="footer">
<div class="content footer-links">
<span>
<a href="https://panduan.lumbung.space/share/684ea8a2-bc47-4111-acf2-f88a200b640f">Imprint</a>
</span>
<span>
<a href="https://panduan.lumbung.space/share/8a742222-2561-4d67-a9f1-6c7c4fe8bead">Privacy Policy</a>
</span>
<span>
<a href="https://panduan.lumbung.space/share/272026ff-57fd-4894-8d68-58606c77044c">FAQ</a>
</span>
<span>
<a href="https://panduan.lumbung.space/share/ece8e392-7b21-4379-bd82-a11e06ebf1fb">Community Guidelines</a>
</span>
</div>
</footer>
</body>
</html>