From a045cc042b65c0875c5796aa3af3219581672439 Mon Sep 17 00:00:00 2001 From: Robin Date: Mon, 11 Nov 2024 11:04:49 -0500 Subject: [PATCH] Fix footer not adapting to narrow windows This CSS block was added last week but seems to have become lost along the way in a merge. --- src/room/InCallView.module.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/room/InCallView.module.css b/src/room/InCallView.module.css index d23aa8e4..fe973132 100644 --- a/src/room/InCallView.module.css +++ b/src/room/InCallView.module.css @@ -94,6 +94,20 @@ Please see LICENSE in the repository root for full details. justify-self: end; } +@media (max-width: 660px) { + .footer { + grid-template-areas: ". buttons buttons buttons ."; + } + + .logo { + display: none; + } + + .layout { + display: none !important; + } +} + @media (max-width: 370px) { .raiseHand { display: none;