Fix scaling and mobile layouts

This commit is contained in:
Leo Vasanko
2023-11-07 19:05:21 +00:00
parent d5e1304c0d
commit 4de2027959
4 changed files with 51 additions and 26 deletions

View File

@@ -442,6 +442,7 @@ table td {
}
}
thead tr {
font-size: var(--header-font-size);
background: linear-gradient(to bottom, #eee, #fff 30%, #ddd);
color: #000;
box-shadow: 0 0 .2rem black;

View File

@@ -88,8 +88,8 @@ defineExpose({
flex-shrink: 1;
}
input[type='search'] {
background: var(--primary-background);
color: var(--primary-color);
background: var(--input-background);
color: var(--input-color);
border: 0;
border-radius: 0.1em;
padding: 0.5em;

View File

@@ -146,7 +146,7 @@ const download = async () => {
<style>
.select-text {
color: var(--accent-color);
text-wrap: nowrap;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}