From 0737e144728acfd039c41c519a801ab685af355d Mon Sep 17 00:00:00 2001 From: matty Date: Wed, 19 Jun 2024 19:52:55 -0400 Subject: [PATCH] better sizing for mobile --- assets/styles/video/_container.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/styles/video/_container.scss b/assets/styles/video/_container.scss index 08a8c1c3..376067af 100644 --- a/assets/styles/video/_container.scss +++ b/assets/styles/video/_container.scss @@ -37,7 +37,7 @@ #peertube-plugin-livechat-container converse-root { converse-muc { - min-height: 50vh; + min-height: 57vh; /* 100vh - 30vh for video = 70vh remaining */ } } @@ -47,7 +47,7 @@ @media only screen and (min-width: 50vw) and (max-width: 75vw) { #peertube-plugin-livechat-container converse-root { converse-muc { - min-height: 65vh; + min-height: 57vh; /* Slightly less to account for other elements */ } } @@ -57,7 +57,7 @@ @media only screen and (min-width: 76vw) and (max-width: 100vw) { #peertube-plugin-livechat-container converse-root { converse-muc { - min-height: 70vh; + min-height: 57vh; /* Assuming more height can be used */ } }