From 0e03a424cbaf22d65437936c3ce3c22ba3c61416 Mon Sep 17 00:00:00 2001 From: Padreug Date: Sat, 16 May 2026 23:28:29 +0200 Subject: [PATCH] feat(libra): shrink filter controls on mobile Drop the date-range/type-filter buttons and custom-date inputs from h-8 to h-7 below md to claw back a bit of vertical space on phones, keeping h-8 on tablet/desktop where it's comfortable. --- src/modules/expenses/views/TransactionsPage.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/modules/expenses/views/TransactionsPage.vue b/src/modules/expenses/views/TransactionsPage.vue index 4a56a21..70b560c 100644 --- a/src/modules/expenses/views/TransactionsPage.vue +++ b/src/modules/expenses/views/TransactionsPage.vue @@ -216,7 +216,7 @@ onMounted(() => { :key="option.value" :variant="dateRangeType === option.value ? 'default' : 'outline'" size="sm" - class="h-8 px-3 text-xs" + class="h-7 md:h-8 px-3 text-xs" @click="onDateRangeTypeChange(option.value)" :disabled="isLoading" > @@ -232,7 +232,7 @@ onMounted(() => { :key="option.value" :variant="typeFilter === option.value ? 'default' : 'outline'" size="sm" - class="h-8 px-3 text-xs" + class="h-7 md:h-8 px-3 text-xs" @click="typeFilter = option.value" :disabled="isLoading" > @@ -247,7 +247,7 @@ onMounted(() => { @@ -256,13 +256,13 @@ onMounted(() => {