mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 18:23:50 +00:00
Fix / simplify animation behavior
This commit is contained in:
parent
7beb7ddb06
commit
0b92fcc5e4
|
@ -78,8 +78,8 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<transition name="fade" mode="in-out">
|
||||
<div v-if="!plotConfigModal" v-show="showPlotConfig" class="w-25 config-sidebar">
|
||||
<transition name="fade">
|
||||
<div v-if="!plotConfigModal" v-show="showPlotConfig" class="w-25">
|
||||
<PlotConfigurator :columns="datasetColumns" :is-visible="showPlotConfig ?? false" />
|
||||
</div>
|
||||
</transition>
|
||||
|
@ -237,7 +237,7 @@ onMounted(() => {
|
|||
transition: all 0.2s;
|
||||
}
|
||||
|
||||
.fade-enter,
|
||||
.fade-enter-from,
|
||||
.fade-leave-to {
|
||||
opacity: 0;
|
||||
transform: translateX(30px);
|
||||
|
|
|
@ -80,7 +80,7 @@
|
|||
@click="showLeftBar = !showLeftBar"
|
||||
>{{ showLeftBar ? '<' : '>' }}</b-button
|
||||
>
|
||||
<transition name="fade" mode="in-out">
|
||||
<transition name="fade">
|
||||
<BacktestResultSelect
|
||||
v-if="btFormMode !== 'visualize' && showLeftBar"
|
||||
:backtest-history="botStore.activeBot.backtestHistory"
|
||||
|
|
Loading…
Reference in New Issue
Block a user