Wrap live display in centered container

This commit is contained in:
Peter Stockings
2023-01-22 20:59:29 +11:00
parent f35c30aeb1
commit 0a93eb7507

View File

@@ -13,20 +13,16 @@
</head> </head>
<body> <body>
<div class="flex overflow-hidden bg-white pt-16"> <div class="h-full w-full bg-gray-50 relative overflow-y-auto">
<main>
<div class="h-full w-full bg-gray-50 relative overflow-y-auto"> <div class="pt-6 px-4 container mx-auto pt-8" id="container">
<main> <div hx-get="{{ url_for('overview') }}" hx-trigger="load, every 2s">
<div class="pt-6 px-4" id="container">
<div hx-get="{{ url_for('overview') }}" hx-trigger="load, every 2s">
</div>
</div> </div>
</div>
</main> </main>
</div>
</div> </div>
</body> </body>
</html> </html>