File 0003-Avoid-oversized-container-in-some-browsers.patch of Package berghain
From f1cc64943572b927b829616daac622313424f7e9 Mon Sep 17 00:00:00 2001
From: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
Date: Thu, 19 Jun 2025 15:40:54 +0200
Subject: [PATCH 3/3] Avoid oversized container in some browsers
With the image inserted, SeaMonkey would oddly scale up the image containers.
Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
---
web/src/style.scss | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/web/src/style.scss b/web/src/style.scss
index f9cfa8c0bfe0..4f4273704cd5 100644
--- a/web/src/style.scss
+++ b/web/src/style.scss
@@ -8,7 +8,7 @@
//align-content: center;
//position: absolute;
width: 100%;
- height: 100%;
+ min-height: 5em;
> .description {
width: 40%;
--
2.50.1