From d4c0251b9e5a6b4bd6febeb2b13a6fd6d9f96aed Mon Sep 17 00:00:00 2001 From: "Steven R. Loomis" Date: Mon, 16 Sep 2024 14:02:38 -0500 Subject: [PATCH] CLDR-17947 site: pin max width and height for image --- docs/site/assets/css/page.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/site/assets/css/page.css b/docs/site/assets/css/page.css index 3c82fae7d63..c199cc26660 100644 --- a/docs/site/assets/css/page.css +++ b/docs/site/assets/css/page.css @@ -180,3 +180,8 @@ header#atViewHeader { div > header { display: none !important; } + +img { + max-width: 100%; + max-height: 90dvh; +}