Files
cameleer-server/ui/src/pages/Exchanges/ExchangesPage.module.css

29 lines
440 B
CSS
Raw Normal View History

.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;
}