mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
46 lines
680 B
SCSS
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;
|
|
}
|
|
}
|