From e38562f946d9c1611b6c5960e2e320749d8c3dd2 Mon Sep 17 00:00:00 2001 From: Anushka Sharan Date: Mon, 15 Dec 2025 18:29:43 +0530 Subject: [PATCH 1/5] fix scrollable section bug #372 --- docs/_assets/vocabulary/css/vocabulary.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/_assets/vocabulary/css/vocabulary.css b/docs/_assets/vocabulary/css/vocabulary.css index d30a965..630b2de 100644 --- a/docs/_assets/vocabulary/css/vocabulary.css +++ b/docs/_assets/vocabulary/css/vocabulary.css @@ -1803,8 +1803,9 @@ body > footer .license svg { @media (min-width: 1500px) { body { - width: 1500px; - margin: 0 auto; + /* Removed fixed width constraint to allow full-width layout on larger screens */ + /* width: 1500px; */ + /* margin: 0 auto; */ } body > main { From 163f6214dda02146553a17e50f00dd12d6bf6606 Mon Sep 17 00:00:00 2001 From: anushkaaaaaaaa Date: Tue, 16 Dec 2025 13:48:22 +0530 Subject: [PATCH 2/5] remove fixed width constraint for full-width layout on larger screens --- docs/_assets/vocabulary/css/vocabulary.css | 7 ------- 1 file changed, 7 deletions(-) diff --git a/docs/_assets/vocabulary/css/vocabulary.css b/docs/_assets/vocabulary/css/vocabulary.css index 630b2de..ffbb279 100644 --- a/docs/_assets/vocabulary/css/vocabulary.css +++ b/docs/_assets/vocabulary/css/vocabulary.css @@ -1802,16 +1802,9 @@ body > footer .license svg { /* responsive contexts */ @media (min-width: 1500px) { - body { - /* Removed fixed width constraint to allow full-width layout on larger screens */ - /* width: 1500px; */ - /* margin: 0 auto; */ - } - body > main { overflow-x: hidden; } - } @media (max-width: 1140px) { From 749bd88802c7a046e5cec659e223f917e2671df4 Mon Sep 17 00:00:00 2001 From: anushkaaaaaaaa Date: Tue, 16 Dec 2025 14:06:43 +0530 Subject: [PATCH 3/5] remove redundant media query for overflow-x on large screens --- docs/_assets/vocabulary/css/vocabulary.css | 6 ------ 1 file changed, 6 deletions(-) diff --git a/docs/_assets/vocabulary/css/vocabulary.css b/docs/_assets/vocabulary/css/vocabulary.css index ffbb279..3f2f047 100644 --- a/docs/_assets/vocabulary/css/vocabulary.css +++ b/docs/_assets/vocabulary/css/vocabulary.css @@ -1801,12 +1801,6 @@ body > footer .license svg { /* responsive contexts */ -@media (min-width: 1500px) { - body > main { - overflow-x: hidden; - } -} - @media (max-width: 1140px) { .blog-index main footer .attribution-list ul.expand { grid-template-columns: 1fr 1fr; From 412da3c5b4397a83b15e8864650deff06e723049 Mon Sep 17 00:00:00 2001 From: anushkaaaaaaaa Date: Tue, 16 Dec 2025 14:16:44 +0530 Subject: [PATCH 4/5] fix: adjust padding and width for listing page layout --- docs/_assets/css/style.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/_assets/css/style.css b/docs/_assets/css/style.css index 25ed7d5..00d2732 100644 --- a/docs/_assets/css/style.css +++ b/docs/_assets/css/style.css @@ -37,9 +37,9 @@ code { /* Styles for listing.html resource thumbnail cards */ .listing-page main { - padding: 0; - width: 90%; - margin: 0 var(--vocabulary-page-edges-space) 6em; + padding: 0 5%; + width: 100%; + margin: 0 0 6em; box-sizing: border-box; } From ca75acfc04f6dbbf3940b19af6d8127535e19700 Mon Sep 17 00:00:00 2001 From: Anushka Sharan <111284729+anushkaaaaaaaa@users.noreply.github.com> Date: Sat, 17 Jan 2026 21:32:37 +0530 Subject: [PATCH 5/5] Update docs/_assets/css/style.css Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- docs/_assets/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_assets/css/style.css b/docs/_assets/css/style.css index 00d2732..5bf50f1 100644 --- a/docs/_assets/css/style.css +++ b/docs/_assets/css/style.css @@ -37,7 +37,7 @@ code { /* Styles for listing.html resource thumbnail cards */ .listing-page main { - padding: 0 5%; + padding: 0 var(--vocabulary-page-edges-space); width: 100%; margin: 0 0 6em; box-sizing: border-box;