From 77ee0063f58be5ddac48a35339236ef69bb2d445 Mon Sep 17 00:00:00 2001 From: Matt Blenkinsop Date: Fri, 10 May 2024 13:13:20 +0000 Subject: [PATCH] Bug 36827: Fix tab formatting This patch removes unwanted whitespace between the tabs and the tab content Test plan: 1) Enable the ERM module and navigate to the eUsage > Reports sections 2) Observe the whitespace between the tabs and the content 3) Apply patch and run yarn build 4) Hard refresh the page, the whitespace should be gone --- .../js/vue/components/ERM/UsageStatisticsDataProvidersShow.vue | 3 +++ .../prog/js/vue/components/ERM/UsageStatisticsReportsHome.vue | 3 +++ 2 files changed, 6 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProvidersShow.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProvidersShow.vue index 28ffa721c7..eb4813aad4 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProvidersShow.vue +++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProvidersShow.vue @@ -242,4 +242,7 @@ export default { .active { cursor: pointer; } +.toptabs { + margin-bottom: 0; +} diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsReportsHome.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsReportsHome.vue index f1ba21d48e..5246dddcb7 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsReportsHome.vue +++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsReportsHome.vue @@ -117,4 +117,7 @@ export default { .rows { float: none; } +.toptabs { + margin-bottom: 0; +} -- 2.37.1 (Apple Git-137.1)