From b7b794460267f1cae8dc71a434fb683578bcc2fe Mon Sep 17 00:00:00 2001 From: David Johnston Date: Mon, 10 Nov 2025 21:58:15 +1100 Subject: [PATCH 1/2] Fix responsive issue. --- src/app/globals.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/app/globals.css b/src/app/globals.css index 248bbcb..54ad072 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -71,8 +71,28 @@ pre code { display: block; overflow-x: auto; white-space: pre-wrap !important; + /* max-width: calc(100% - 150px); */ } +/* .rgp-base { + max-width: 60%; +} */ + +.rgp-base { + pre { + /** + https://stackoverflow.com/a/73869778/1068446 + This seemed to do it for me. + */ + width: 0 !important; + min-width: calc(100% - 2em) !important; + } +} + +/* .link-wrapper { + max-width: 300px; +} */ + .react-github-permalink .link-wrapper a { word-break: break-word; } From a70b7e526e7c50a5e53ee278183699a860283352 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 10 Nov 2025 11:05:59 +0000 Subject: [PATCH 2/2] Initial plan