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 c3c81529f6 Initial sketch of new react table component
Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
2022-08-04 10:52:21 +03:00

46 lines
680 B
SCSS

.tableTheme {
table {
border-spacing: 0;
border-top: thin solid var(--hrColor);
}
thead {
border-bottom: thin solid var(--hrColor);
color: var(--textColorAccent);
padding-top: 7px;
height: 33px;
}
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);
}
.actions {
@apply justify-end;
}
}