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

46 lines
674 B
CSS
Raw Normal View History

.splitView {
display: flex;
height: 100%;
overflow: hidden;
}
.leftPanel {
display: flex;
flex-direction: column;
overflow: hidden;
height: 100%;
flex-shrink: 0;
}
.splitter {
width: 5px;
flex-shrink: 0;
cursor: col-resize;
background: var(--border);
transition: background 0.15s;
touch-action: none;
}
.splitter:hover,
.splitter:active {
background: var(--amber);
}
.rightPanel {
flex: 1;
display: flex;
flex-direction: column;
overflow: hidden;
height: 100%;
min-width: 0;
}
.emptyRight {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
color: var(--text-muted);
font-size: 0.875rem;
}