26 lines
458 B
CSS
26 lines
458 B
CSS
.table {
|
|
display: grid;
|
|
grid-gap: 6px 16px;
|
|
align-items: center;
|
|
margin-top: 32px;
|
|
margin-bottom: 32px;
|
|
background-color: #333;
|
|
padding: 16px 24px;
|
|
width: min-content;
|
|
border-top-left-radius: 8px;
|
|
border-top-right-radius: 8px;
|
|
}
|
|
.table .row {
|
|
grid-column: 1 / -1;
|
|
}
|
|
.table > div {
|
|
white-space: nowrap;
|
|
line-height: 24px;
|
|
}
|
|
.table .header {
|
|
font-size: 0.85em;
|
|
font-weight: bold;
|
|
color: #777;
|
|
line-height: unset !important;
|
|
}
|