1
Fork 0
mirror of https://github.com/thegeneralist01/archivr synced 2026-07-22 03:05:32 +02:00

refactor(ui): replace entry table with flexbox layout

This commit is contained in:
TheGeneralist 2026-06-23 22:45:37 +02:00
parent 623d2a12cc
commit b895d6331c
Signed by: thegeneralist01
SSH key fingerprint: SHA256:pp9qddbCNmVNoSjevdvQvM5z0DHN7LTa8qBMbcMq/R4
3 changed files with 102 additions and 72 deletions

View file

@ -27,25 +27,16 @@
</div>
<section id="archive-view" class="view is-active">
<table class="entry-table">
<colgroup>
<col class="col-added">
<col class="col-title">
<col class="col-type">
<col class="col-size">
<col class="col-url">
</colgroup>
<thead>
<tr>
<th>Added</th>
<th>Title</th>
<th>Type</th>
<th>Size</th>
<th>Original URL</th>
</tr>
</thead>
<tbody id="entries-body"></tbody>
</table>
<div class="entry-table">
<div class="entry-header-row">
<div class="col-added">Added</div>
<div class="col-title">Title</div>
<div class="col-type">Type</div>
<div class="col-size">Size</div>
<div class="col-url">Original URL</div>
</div>
<div id="entries-body"></div>
</div>
</section>
<section id="runs-view" class="view">