feat(ui): add ExchangesPage with full-width and 3-column modes

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-03-28 13:57:13 +01:00
parent fc27880d96
commit f2abe296ee
2 changed files with 135 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
.threeColumn {
display: grid;
grid-template-columns: 280px 1fr;
height: 100%;
overflow: hidden;
}
.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;
}