Files

50 lines
773 B
CSS
Raw Permalink Normal View History

.header {
display: flex;
padding: 0.5em;
2025-01-04 21:06:02 -07:00
gap: 0.5em;
background-color: var(--panel-background);
border-bottom: 1px solid var(--panel-separator);
}
.column {
display: flex;
flex: 1 1 0;
gap: 0.5em;
flex-direction: column;
overflow: hidden;
}
.row {
display: flex;
gap: 0.5em;
align-items: center;
}
.label {
font-family: var(--code-font-family);
font-weight: var(--code-font-weight);
font-size: var(--code-font-size);
font-variant-ligatures: var(--code-font-variant-ligatures);
2025-01-04 21:06:02 -07:00
text-wrap: nowrap;
white-space: pre;
overflow: hidden;
text-overflow: ellipsis;
}
.emphasized {
2025-03-02 22:55:54 -07:00
color: var(--color-bright);
2025-01-04 21:06:02 -07:00
}
.missing {
color: var(--color-blue);
}
.spacer {
flex: 1 1 0;
}
2025-05-27 22:15:56 -06:00
.input {
display: flex;
align-items: center;
}