From 7ddd600b0c574768ac1a86ff87c739832aa5248f Mon Sep 17 00:00:00 2001 From: schlagmichdoch Date: Fri, 10 Mar 2023 18:47:04 +0100 Subject: [PATCH] fix display name hidden on Firefox for Android --- public/styles.css | 11 ++++++++--- public_included_ws_fallback/styles.css | 11 ++++++++--- 2 files changed, 16 insertions(+), 6 deletions(-) diff --git a/public/styles.css b/public/styles.css index db87050..73e4cb2 100644 --- a/public/styles.css +++ b/public/styles.css @@ -22,13 +22,18 @@ body { } body { - min-height: 100vh; + height: 100%; /* mobile viewport bug fix */ - min-height: -webkit-fill-available; + min-height: -moz-available; /* WebKit-based browsers will ignore this. */ + min-height: -webkit-fill-available; /* Mozilla-based browsers will ignore this. */ + min-height: fill-available; } html { - height: -webkit-fill-available; + height: 100%; + min-height: -moz-available; /* WebKit-based browsers will ignore this. */ + min-height: -webkit-fill-available; /* Mozilla-based browsers will ignore this. */ + min-height: fill-available; } .row-reverse { diff --git a/public_included_ws_fallback/styles.css b/public_included_ws_fallback/styles.css index 2d29898..0a68922 100644 --- a/public_included_ws_fallback/styles.css +++ b/public_included_ws_fallback/styles.css @@ -23,13 +23,18 @@ body { } body { - min-height: 100vh; + height: 100%; /* mobile viewport bug fix */ - min-height: -webkit-fill-available; + min-height: -moz-available; /* WebKit-based browsers will ignore this. */ + min-height: -webkit-fill-available; /* Mozilla-based browsers will ignore this. */ + min-height: fill-available; } html { - height: -webkit-fill-available; + height: 100%; + min-height: -moz-available; /* WebKit-based browsers will ignore this. */ + min-height: -webkit-fill-available; /* Mozilla-based browsers will ignore this. */ + min-height: fill-available; } .row-reverse {