32 lines
476 B
Plaintext
32 lines
476 B
Plaintext
|
@import "theme-@{THEME}.less";
|
||
|
|
||
|
.table {
|
||
|
display: grid;
|
||
|
grid-gap: 6px 16px;
|
||
|
align-items: center;
|
||
|
|
||
|
.row {
|
||
|
grid-column: ~"1 / -1";
|
||
|
}
|
||
|
|
||
|
margin-top: 32px;
|
||
|
margin-bottom: 32px;
|
||
|
background-color: @bg3;
|
||
|
padding: 16px 24px;
|
||
|
width: min-content;
|
||
|
border-top-left-radius: 8px;
|
||
|
border-top-right-radius: 8px;
|
||
|
|
||
|
& > div {
|
||
|
white-space: nowrap;
|
||
|
line-height: 24px;
|
||
|
}
|
||
|
|
||
|
.header {
|
||
|
font-size: 0.85em;
|
||
|
font-weight: bold;
|
||
|
color: @text3;
|
||
|
line-height: unset !important;
|
||
|
}
|
||
|
}
|