Files
objdiff-web/webview/Header.module.css
T
2025-01-04 21:06:02 -07:00

40 lines
636 B
CSS

.header {
display: flex;
padding: 0.5em;
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);
text-wrap: nowrap;
white-space: pre;
overflow: hidden;
text-overflow: ellipsis;
}
.emphasized {
color: light-dark(black, white);
}
.missing {
color: var(--color-blue);
}