- Sidebar wrapper gets height:100% to fill window - Route-scoped Exchanges uses same Dashboard table (not compact ExchangeList) - 50:50 grid split: table on left, diagram on right when route selected - ContentTabs gets border-bottom and surface background for visibility Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
29 lines
440 B
CSS
29 lines
440 B
CSS
.splitView {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.leftPanel {
|
|
overflow: auto;
|
|
height: 100%;
|
|
border-right: 1px solid var(--border);
|
|
}
|
|
|
|
.rightPanel {
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
height: 100%;
|
|
}
|
|
|
|
.emptyRight {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100%;
|
|
color: var(--text-muted);
|
|
font-size: 0.875rem;
|
|
}
|