1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/renderer/components/list/table-theme.module.scss
Alex Andreev c22eb14e91 Experimenting with sizing props
Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
2022-08-16 16:16:36 +03:00

49 lines
746 B
SCSS

.tableTheme {
height: calc(100% - 59px);
overflow: auto;
table {
table-layout: fixed;
width: 100%;
}
thead {
border-bottom: thin solid var(--hrColor);
color: var(--textColorAccent);
height: 33px;
position: sticky;
top: 0;
}
thead tr {
margin: 0 var(--margin);
}
tr {
margin: calc(var(--margin) * 1.6) var(--margin);
}
th {
white-space: nowrap;
text-align: left;
padding: 0 var(--padding);
font-weight: 500;
}
.headIcon {
font-weight: normal;
color: var(--textColorAccent);
}
.disabledArrow {
opacity: 0.3;
}
td {
padding: 0 var(--padding);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}