From 3a52b465958d083dac1729317c482e8704645eae Mon Sep 17 00:00:00 2001 From: Trevor Fitzgerald Date: Sun, 15 Dec 2024 19:56:38 -0500 Subject: [PATCH 1/2] recap: fix lpv cutoff on some viewports --- ui/recap/css/_recap.scss | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ui/recap/css/_recap.scss b/ui/recap/css/_recap.scss index ee702e6f1fe2..6978f1740510 100644 --- a/ui/recap/css/_recap.scss +++ b/ui/recap/css/_recap.scss @@ -73,9 +73,8 @@ body { .recap { &__logo, .lpv { - width: 384px; + width: 45vh; max-width: 61vw; - max-height: 50vh; } .lpv { --c-lpv-bg: transparent; From bd4f5d7d78e41c1c2c600f7bea6cff11ff9693a5 Mon Sep 17 00:00:00 2001 From: Thibault Duplessis Date: Mon, 16 Dec 2024 10:29:15 +0100 Subject: [PATCH 2/2] limit /recap logo height --- ui/recap/css/_recap.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/recap/css/_recap.scss b/ui/recap/css/_recap.scss index 6978f1740510..b52d55220ed8 100644 --- a/ui/recap/css/_recap.scss +++ b/ui/recap/css/_recap.scss @@ -75,6 +75,7 @@ body { .lpv { width: 45vh; max-width: 61vw; + max-height: 50vh; } .lpv { --c-lpv-bg: transparent;