You've already forked objdiff-web
mirror of
https://github.com/encounter/objdiff-web.git
synced 2026-03-30 11:32:18 -07:00
24 lines
400 B
CSS
24 lines
400 B
CSS
.content {
|
|
flex: 1 1 0;
|
|
display: flex;
|
|
flex-flow: row;
|
|
}
|
|
|
|
.column {
|
|
flex: 1 1 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: auto;
|
|
}
|
|
|
|
.no-object {
|
|
color: var(--color-blue);
|
|
|
|
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);
|
|
text-wrap: nowrap;
|
|
white-space: pre;
|
|
}
|