mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-22 19:15:15 +00:00
layout improvements
This commit is contained in:
parent
30ed397701
commit
aa6fb5c6f8
|
@ -1,8 +1,8 @@
|
|||
<template>
|
||||
<div>
|
||||
<div v-if="whitelist.length > 0" class="d-flex flex-column flex-lg-row px-2">
|
||||
<div class="col-12 col-md-2">
|
||||
<b-list-group>
|
||||
<!-- TODO: look into flexbox solution to have overflow scroll? -->
|
||||
<b-list-group class="col-12 col-md-2 overflow-auto" style="height: calc(100vh - 135px)">
|
||||
<b-list-group-item
|
||||
v-for="(pair, i) in whitelist"
|
||||
:key="pair.pair"
|
||||
|
@ -16,13 +16,13 @@
|
|||
{{ pair.pair }}
|
||||
</b-list-group-item>
|
||||
</b-list-group>
|
||||
</div>
|
||||
<div class="flex-fill">
|
||||
<!-- TODO: fix layout issues -->
|
||||
<ChartView />
|
||||
</div>
|
||||
<div class="col-12 col-md-2">
|
||||
<CopyableTextfield
|
||||
style="height: calc(100vh - 135px)"
|
||||
class="overflow-auto"
|
||||
:content="
|
||||
JSON.stringify(
|
||||
whitelist.filter((p) => p.enabled === true).map((p) => p.pair),
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
</b-button>
|
||||
</b-list-group-item>
|
||||
</b-list-group>
|
||||
<div class="flex-fill">
|
||||
<div class="d-flex flex-column flex-fill">
|
||||
<PairlistConfigActions />
|
||||
<PairlistConfigBlacklist />
|
||||
<b-alert
|
||||
|
@ -36,7 +36,7 @@
|
|||
First entry in the pairlist must be a Generating pairlist, like StaticPairList or
|
||||
VolumePairList.
|
||||
</b-alert>
|
||||
<div ref="pairlistConfigsEl" class="h-100">
|
||||
<div ref="pairlistConfigsEl" class="flex-grow-1">
|
||||
<PairlistConfigItem
|
||||
v-for="(pairlist, i) in pairlistsComp"
|
||||
:key="pairlist.id"
|
||||
|
|
Loading…
Reference in New Issue
Block a user