From 285f74716fb62f68b9391a1727a7a8894a4cf18b Mon Sep 17 00:00:00 2001 From: aidil-coder-bot Date: Sat, 28 Mar 2026 06:35:20 +0100 Subject: [PATCH 1/4] hotfix(1.5.2): fix overflow clipping in section containers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Root cause: all section wrapper divs used overflow-hidden which clipped child code blocks, math formulas and params tables. Fix: - Replace overflow-hidden with overflow-x-hidden on all section containers to preserve border-radius while allowing horizontal scroll in children - Fix CodeBlock.vue wrapper: overflow hidden → overflow-x auto - Fix .code-panel in style.css: overflow hidden → overflow-x auto Affected components: - ParamsTable, GlossarySection, OverviewSection, VaccinationSection - RegenciesSection, StatisticsSection, TaskForcesSection - NationalLatestSection, HealthCheckSection, ProvincesSection - AuthenticationSection, HospitalsSection, RootEndpointSection - ProvinceCasesSection, NationalHistoricalSection, ErrorHandlingSection --- src/components/CodeBlock.vue | 2 +- src/components/ParamsTable.vue | 2 +- src/components/documentation/AuthenticationSection.vue | 2 +- src/components/documentation/ErrorHandlingSection.vue | 2 +- src/components/documentation/GlossarySection.vue | 2 +- src/components/documentation/HealthCheckSection.vue | 2 +- src/components/documentation/HospitalsSection.vue | 4 ++-- .../documentation/NationalHistoricalSection.vue | 2 +- src/components/documentation/NationalLatestSection.vue | 2 +- src/components/documentation/OverviewSection.vue | 2 +- src/components/documentation/ProvinceCasesSection.vue | 2 +- src/components/documentation/ProvincesSection.vue | 2 +- src/components/documentation/RegenciesSection.vue | 6 +++--- src/components/documentation/RootEndpointSection.vue | 2 +- src/components/documentation/StatisticsSection.vue | 8 ++++---- src/components/documentation/TaskForcesSection.vue | 2 +- src/components/documentation/VaccinationSection.vue | 6 +++--- src/style.css | 2 +- 18 files changed, 26 insertions(+), 26 deletions(-) diff --git a/src/components/CodeBlock.vue b/src/components/CodeBlock.vue index afea03d..9fcb429 100644 --- a/src/components/CodeBlock.vue +++ b/src/components/CodeBlock.vue @@ -267,7 +267,7 @@ onMounted(() => { .code-block-wrapper { @apply rounded-lg my-4 transition-colors duration-200; @apply border border-gray-200 bg-white dark:border-gray-700 dark:bg-gray-900; - overflow: hidden; /* keep border-radius clipping */ + overflow-x: auto; /* allow horizontal scroll */ max-width: 100%; } diff --git a/src/components/ParamsTable.vue b/src/components/ParamsTable.vue index 3345f51..dbcf83d 100644 --- a/src/components/ParamsTable.vue +++ b/src/components/ParamsTable.vue @@ -1,7 +1,7 @@ - + @@ -125,7 +126,7 @@ -
+
@@ -184,7 +185,7 @@
-
+

{{ t('documentation.glossary.reproductionRate.practicalExample.step3.detailedCalculations.lowerBoundStep.title') }}

{{ t('documentation.glossary.reproductionRate.practicalExample.step3.detailedCalculations.lowerBoundStep.formula') }}

@@ -273,7 +274,7 @@
-
+

{{ t('documentation.glossary.caseClassifications.title') }}