Another .pull-right fix.

This commit is contained in:
Fabio Manganiello 2023-03-20 02:04:32 +01:00
parent 3743ee4f00
commit 78bbe71be1
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
1 changed files with 3 additions and 3 deletions

View File

@ -13,13 +13,13 @@
</div>
<div class="col-s-3 col-m-2 buttons pull-right">
<span class="value"
v-text="value.values[value.value] || value.value"
v-if="value?.value != null" />
<button @click.stop="collapsed = !collapsed" v-if="hasValues">
<i class="fas"
:class="{'fa-angle-up': !collapsed, 'fa-angle-down': collapsed}" />
</button>
<span class="value"
v-text="value.values[value.value] || value.value"
v-if="value?.value != null" />
</div>
</div>