Make sidebar narrower, and details taller

This commit is contained in:
Mads Sørensen 2021-02-04 15:13:53 +01:00
parent 37dc2d644a
commit e7fbb5d43a

View File

@ -36,13 +36,13 @@ export enum LayoutMutations {
}
// Define default layouts
const DEFAULT_TRADING_LAYOUT: GridItemData[] = [
{ i: TradeLayout.botControls, x: 0, y: 0, w: 4, h: 3 },
{ i: TradeLayout.multiPane, x: 0, y: 3, w: 4, h: 28 },
{ i: TradeLayout.chartView, x: 4, y: 0, w: 8, h: 11 },
{ i: TradeLayout.tradeDetail, x: 4, y: 16, w: 8, h: 5 },
{ i: TradeLayout.openTrades, x: 4, y: 11, w: 8, h: 5 },
{ i: TradeLayout.tradeHistory, x: 4, y: 21, w: 8, h: 10 },
{ i: TradeLayout.logView, x: 0, y: 31, w: 12, h: 13 },
{ i: TradeLayout.botControls, x: 0, y: 0, w: 3, h: 3 },
{ i: TradeLayout.multiPane, x: 0, y: 3, w: 3, h: 32 },
{ i: TradeLayout.chartView, x: 3, y: 0, w: 9, h: 14 },
{ i: TradeLayout.tradeDetail, x: 3, y: 19, w: 9, h: 6 },
{ i: TradeLayout.openTrades, x: 3, y: 14, w: 9, h: 5 },
{ i: TradeLayout.tradeHistory, x: 3, y: 25, w: 9, h: 10 },
{ i: TradeLayout.logView, x: 0, y: 35, w: 12, h: 13 },
];
const DEFAULT_DASHBOARD_LAYOUT: GridItemData[] = [