From c984739f5092d75319767b8423393f24a9b324f5 Mon Sep 17 00:00:00 2001 From: Maya Kirova Date: Thu, 11 Dec 2025 14:11:24 +0200 Subject: [PATCH] Let content fill 100% of the width/height so there's no cutoff in small frames. --- browser/IgBlazorSamples.Core/wwwroot/css/browser.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/browser/IgBlazorSamples.Core/wwwroot/css/browser.css b/browser/IgBlazorSamples.Core/wwwroot/css/browser.css index c08bcdebc3..b8d779507b 100644 --- a/browser/IgBlazorSamples.Core/wwwroot/css/browser.css +++ b/browser/IgBlazorSamples.Core/wwwroot/css/browser.css @@ -87,8 +87,7 @@ overflow-x: auto; /* background-color: rgb(250, 178, 178); */ - height: calc(100% - 1rem); - width: calc(100% - 1rem); + height: 100%; width: 100%; padding: 0.5rem; display: flex;