mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-11 02:33:51 +00:00
Small style adjustments, improving mobile style
This commit is contained in:
parent
92e8b9f51a
commit
514c8da51a
|
@ -1,10 +1,10 @@
|
|||
<template>
|
||||
<div class="h-100 overflow-auto w-100 p-1">
|
||||
<b-list-group>
|
||||
<div class="h-100 overflow-auto p-1">
|
||||
<b-list-group id="tradeList">
|
||||
<b-list-group-item
|
||||
v-for="trade in filteredTrades"
|
||||
:key="trade.trade_id"
|
||||
class="border border-secondary rounded my-05 px-2"
|
||||
class="border border-secondary rounded my-05 px-1"
|
||||
@click="tradeClick(trade)"
|
||||
>
|
||||
<CustomTradeListEntry :trade="trade" :stake-currency-decimals="stakeCurrencyDecimals" />
|
||||
|
@ -13,13 +13,13 @@
|
|||
|
||||
<span v-if="trades.length == 0" class="mt-5">{{ emptyText }}</span>
|
||||
|
||||
<div class="w-100 d-flex justify-content-between">
|
||||
<div class="w-100 d-flex justify-content-between mt-1">
|
||||
<b-pagination
|
||||
v-if="!activeTrades"
|
||||
v-model="currentPage"
|
||||
:total-rows="rows"
|
||||
:per-page="perPage"
|
||||
aria-controls="my-table"
|
||||
aria-controls="tradeList"
|
||||
></b-pagination>
|
||||
<b-input
|
||||
v-if="showFilter"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<div class="d-flex">
|
||||
<div
|
||||
class="col-7 px-1 d-flex flex-row flex-fill text-left justify-content-between align-items-center"
|
||||
class="px-1 d-flex flex-row flex-fill text-left justify-content-between align-items-center"
|
||||
>
|
||||
<span>
|
||||
<span class="mr-1 font-weight-bold">{{ trade.pair }}</span>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<main class="container-fluid container-main">
|
||||
<main>
|
||||
<BotAlerts />
|
||||
<router-view />
|
||||
</main>
|
||||
|
|
|
@ -51,7 +51,7 @@ const ftbot = namespace(StoreModules.ftbot);
|
|||
BackIcon,
|
||||
},
|
||||
})
|
||||
export default class Trading extends Vue {
|
||||
export default class TradesList extends Vue {
|
||||
@Prop({ default: false }) history!: boolean;
|
||||
|
||||
@ftbot.Getter [BotStoreGetters.openTrades]!: Trade[];
|
||||
|
|
Loading…
Reference in New Issue
Block a user