From bfe09bcf5a021fc35955cb1ff6bce3e5df2deb0a Mon Sep 17 00:00:00 2001 From: Rohan <45748283+r100-stack@users.noreply.github.com> Date: Fri, 4 Oct 2024 10:42:53 -0400 Subject: [PATCH] Workaround for unscrollable sidenav in react-workshop (#2283) --- apps/react-workshop/.ladle/global.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/react-workshop/.ladle/global.css b/apps/react-workshop/.ladle/global.css index 5936b8af4dc..a33af0b6529 100644 --- a/apps/react-workshop/.ladle/global.css +++ b/apps/react-workshop/.ladle/global.css @@ -27,3 +27,8 @@ main { position: relative; transform: translateZ(0); } + +/* TODO: Remove when the sidenav scroll is fixed in Chrome. See https://github.com/tajo/ladle/issues/574 */ +nav.ladle-aside { + min-height: unset; +}