feat: initial dashboard

This commit is contained in:
relikd
2023-06-02 18:21:40 +02:00
parent 7de6db0c8d
commit 46479ce6d8
5 changed files with 167 additions and 1 deletions

View File

@@ -133,12 +133,15 @@ table th {
background-color: var(--bg-dim);
}
thead>tr {
thead>tr, tr.thead {
border: 1px solid #DDD;
position: sticky;
top: 4rem;
z-index: 98;
}
tr.thead>th {
vertical-align: bottom;
}
/* .detail-table {
width: max-content;
@@ -161,6 +164,10 @@ tbody>tr {
border: 1px solid #DDD;
}
tr.blank {
height: 3ex;
}
td.table-actions {
padding: 0;
text-align: center;
@@ -295,6 +302,12 @@ table.clickable tbody>tr:hover {
text-align: center;
}
.div-by-side>div {
display: inline-block;
vertical-align: top;
margin-right: 1em;
}
#page-content-wrapper {
margin-bottom: 15px;
}