improve styling for account page

Signed-off-by: Arthur Lu <learthurgo@gmail.com>
This commit is contained in:
Arthur Lu 2023-04-28 23:57:42 +00:00
parent b959d3b872
commit 4d4edaa025

View File

@ -23,13 +23,15 @@
</div> </div>
</nav> </nav>
</header> </header>
<main class="w3-container"> <main>
<section class="w3-container">
<h2>Account</h2> <h2>Account</h2>
<div class="flex row wrap"> <div class="flex row wrap w3-card">
<p id="username">Username: </p> <p id="username">Username: </p>
<p id="pool">Pool: </p> <p id="pool">Pool: </p>
<p id="vmid">VMID Range: </p> <p id="vmid">VMID Range: </p>
</div> </div>
<div class="w3-card">
<table id="resource-table" class="w3-table w3-table-all" style="overflow-x: auto;"> <table id="resource-table" class="w3-table w3-table-all" style="overflow-x: auto;">
<thead> <thead>
<tr class="w3-black"> <tr class="w3-black">
@ -41,6 +43,8 @@
</thead> </thead>
<tbody></tbody> <tbody></tbody>
</table> </table>
</div>
</section>
</main> </main>
</body> </body>
</html> </html>