From 7bd8462dc3b71073b7dabd4ad47ba0510523534e Mon Sep 17 00:00:00 2001 From: "smx.pusha" <139338836+smxpusha@users.noreply.github.com> Date: Mon, 10 Aug 2026 16:25:11 +0200 Subject: [PATCH] FIX - fit billing status filters --- frontend/src/views/apps/BillingApp.vue | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/frontend/src/views/apps/BillingApp.vue b/frontend/src/views/apps/BillingApp.vue index 4efd9b8..25c40b0 100644 --- a/frontend/src/views/apps/BillingApp.vue +++ b/frontend/src/views/apps/BillingApp.vue @@ -61,7 +61,7 @@ const tab = ref('overview') const screen = ref('main') const direction = ref('inbox') const filter = ref('all') -const filters: BillingFilter[] = ['all', 'open', 'overdue', 'paid'] +const filters: BillingFilter[] = ['all', 'open', 'paid'] const search = ref('') const paymentOpen = ref(false) const toastOpen = ref(false) @@ -1035,20 +1035,15 @@ onBeforeUnmount(() => { margin-bottom: 12px; } .billing-status-filter__scroll { - overflow-x: auto; - padding-bottom: 2px; - scrollbar-width: none; -} -.billing-status-filter__scroll::-webkit-scrollbar { - display: none; + overflow: hidden; } .billing-filters { - width: max-content; - min-width: 100%; + width: 100%; } .billing-filters :deep(button) { display: flex; - min-width: 82px; + min-width: 0; + flex: 1; align-items: center; justify-content: center; gap: 5px;