chore: added bold font type, moved common table css to separate file

This commit is contained in:
2025-12-02 01:49:35 +01:00
parent 07ded5ef50
commit a267dd7030
8 changed files with 63 additions and 47 deletions
+40
View File
@@ -0,0 +1,40 @@
.table-search-box {
display: flex;
gap: 0.5em;
margin-top: 0.5em;
}
.table-wrapper {
width: 100%;
overflow: auto;
margin-top: 1em;
}
.table-wrapper table > thead > tr > td {
& > div {
display: flex;
justify-content: center;
align-items: center;
gap: 0.5em;
}
&[data-sortable='true'] {
cursor: pointer;
}
}
.table-wrapper table > tbody > tr {
cursor: pointer;
&:hover {
background: #1a293b;
}
}
.table-visible-results-box {
margin-top: 0.5em;
}
.table-visible-results-box input {
max-width: 70px;
}