From 68d86f86f0e23ee79d46cca37fed9986b366f446 Mon Sep 17 00:00:00 2001 From: mdickson-adbe <95774602+mdickson-adbe@users.noreply.github.com> Date: Mon, 26 Aug 2024 11:22:07 -0400 Subject: [PATCH] Hide overflow in calendar task thumbnails (#164) Setting a max-height skews the aspect ratio and sometimes shows the gray default background. With overflow: hidden you can still get an idea of what the thumbnail is without having it look distorted. --- blocks/gmo-program-details/gmo-program-details.css | 1 + 1 file changed, 1 insertion(+) diff --git a/blocks/gmo-program-details/gmo-program-details.css b/blocks/gmo-program-details/gmo-program-details.css index b877e35..36a77d6 100644 --- a/blocks/gmo-program-details/gmo-program-details.css +++ b/blocks/gmo-program-details/gmo-program-details.css @@ -547,6 +547,7 @@ body { background-color: lightgray; border-radius: 4px; margin-right: 5px; + overflow: hidden; } & .link { margin-right: 10px;