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:
parent
623d2a12cc
commit
b895d6331c
3 changed files with 102 additions and 72 deletions
|
|
@ -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">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue