From ca6b428ab620285bead1140677c607b86024ade5 Mon Sep 17 00:00:00 2001 From: Lam Nguyen Date: Tue, 8 Jul 2025 10:52:26 -0700 Subject: [PATCH 1/2] Redoc: Fixed responsive on new grid --- assets/css/v2/style.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/assets/css/v2/style.css b/assets/css/v2/style.css index dd47380c..a77b33fa 100644 --- a/assets/css/v2/style.css +++ b/assets/css/v2/style.css @@ -918,7 +918,12 @@ nav { /* Allow redocly to fill the entire container */ &.content__redocly { justify-self: unset; - max-width: unset; + max-width: 100%; + + #api-component { + display: block; + max-width: 100%; + } } } From 08027efcf58daf95d3077acdc831b0f7f6e13a10 Mon Sep 17 00:00:00 2001 From: Lam Nguyen Date: Tue, 8 Jul 2025 16:18:55 -0700 Subject: [PATCH 2/2] Redoc: Fix issue with redocly not going under header --- assets/css/v2/style.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/assets/css/v2/style.css b/assets/css/v2/style.css index a77b33fa..8c5c4710 100644 --- a/assets/css/v2/style.css +++ b/assets/css/v2/style.css @@ -921,6 +921,8 @@ nav { max-width: 100%; #api-component { + z-index: 0; + position: relative; display: block; max-width: 100%; }