mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-24 03:55:15 +00:00
fix: stringlist button icon not being centered
This commit is contained in:
parent
3ef10a44f1
commit
933b8fd318
|
@ -21,6 +21,7 @@ withDefaults(
|
|||
:size="size"
|
||||
variant="outline-secondary"
|
||||
title="Delete this value."
|
||||
class="d-flex align-items-center justify-content-center"
|
||||
@click="values.splice(idx, 1)"
|
||||
>
|
||||
<i-mdi-delete />
|
||||
|
@ -31,9 +32,10 @@ withDefaults(
|
|||
:size="size"
|
||||
:title="`Add new value`"
|
||||
variant="secondary"
|
||||
class="mt-auto"
|
||||
class="mt-auto d-flex align-items-center justify-content-center"
|
||||
@click="values.push('')"
|
||||
><i-mdi-plus-box-outline />
|
||||
>
|
||||
<i-mdi-plus-box-outline />
|
||||
</BButton>
|
||||
</div>
|
||||
</template>
|
||||
|
|
Loading…
Reference in New Issue
Block a user