ui: button height to match inputs

This commit is contained in:
JonFreer 2023-08-13 10:08:08 +01:00 committed by Thomas Citharel
parent f04907c2a6
commit 95f3be2da9
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
2 changed files with 3 additions and 2 deletions

View File

@ -13,6 +13,7 @@
</template> </template>
<o-button <o-button
v-if="canShowLocateMeButton" v-if="canShowLocateMeButton"
class="!h-auto"
ref="mapMarker" ref="mapMarker"
icon-right="map-marker" icon-right="map-marker"
@click="locateMe" @click="locateMe"
@ -63,7 +64,7 @@
<o-button <o-button
:disabled="!queryTextWithDefault" :disabled="!queryTextWithDefault"
@click="resetAddress" @click="resetAddress"
class="reset-area" class="reset-area !h-auto"
icon-left="close" icon-left="close"
:title="t('Clear address field')" :title="t('Clear address field')"
/> />

View File

@ -67,7 +67,7 @@
/> />
<o-button <o-button
@click="dateFilter = new Date()" @click="dateFilter = new Date()"
class="reset-area" class="reset-area !h-auto"
icon-left="close" icon-left="close"
:title="t('Clear date filter field')" :title="t('Clear date filter field')"
/> />