14 lines
221 B
CSS
14 lines
221 B
CSS
|
|
.ops-runtime-row {
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: 90px 1fr;
|
||
|
|
gap: 8px;
|
||
|
|
align-items: start;
|
||
|
|
color: var(--text);
|
||
|
|
font-size: 13px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ops-runtime-row span {
|
||
|
|
color: var(--subtitle);
|
||
|
|
font-weight: 700;
|
||
|
|
}
|