Some more initial changes

This commit is contained in:
Jonathan Carter
2024-12-08 16:55:03 +02:00
parent a61cc67a34
commit 4bc89c5d2b
24 changed files with 53 additions and 117 deletions

View File

@@ -4,16 +4,21 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="/static/bulma.css" rel="stylesheet">
<link href="/static/welcome.css" rel="stylesheet">
<link href="/static/system-installer.css" rel="stylesheet">
<script src="/static/htmx.min.js" crossorigin="anonymous"></script>
</head>
<body>
<body style="overflow: hidden; max-height: 450px;">
<div style="border-radius: 10px; padding: 13px;" class="notification is-dark">
<div style="width: 1050px; height: 600px; border-radius: 10px; padding: 13px; overflow: hidden;" class="notification is-dark">
{% include "header.html" %}
<div style="height: 450px; overflow-y: scroll">
{% block body %}
{% endblock %}
</div>
{% include "footer.html" %}
</body>
</html>