From c0f464b6a6357706525e577846192e5c01edf011 Mon Sep 17 00:00:00 2001 From: "Z. Cliffe Schreuders" Date: Thu, 25 Sep 2025 14:17:11 +0100 Subject: [PATCH] Enhance lab layout by adjusting content width in embedded mode - Added a CSS rule to set the maximum width of lab content to 100% in embedded mode, improving responsiveness and layout consistency. --- _layouts/lab.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/_layouts/lab.html b/_layouts/lab.html index a4feca6..16d9d07 100644 --- a/_layouts/lab.html +++ b/_layouts/lab.html @@ -96,6 +96,10 @@ layout: default padding: 2rem; } +.embeded-mode .lab-content { + max-width: 100%; +} + .lab-header { border-bottom: 2px solid var(--panelborder-color); padding-bottom: 1.5rem;