You've already forked objdiff-web
mirror of
https://github.com/encounter/objdiff-web.git
synced 2026-03-30 11:32:18 -07:00
20 lines
492 B
CSS
20 lines
492 B
CSS
.header {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 0.5em;
|
|
padding: 0.5em;
|
|
background-color: var(--vscode-panel-background);
|
|
border-bottom: 1px solid var(--vscode-menu-separatorBackground);
|
|
|
|
> span {
|
|
font-family: var(--vscode-editor-font-family, monospace);
|
|
font-weight: var(--vscode-editor-font-weight, normal);
|
|
font-size: var(--font-size);
|
|
text-wrap: nowrap;
|
|
white-space: pre;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|