From 6a523849df309d204a70b19506bff5612f718701 Mon Sep 17 00:00:00 2001 From: Cee Chen Date: Wed, 18 Oct 2023 21:31:45 -0700 Subject: [PATCH] Fix text truncation/available width on webkit browsers - for some reason they're rendering a full scrollbar and cutting into the item width when FF doesn't --- src-docs/src/components/guide_page/guide_page_header.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-docs/src/components/guide_page/guide_page_header.tsx b/src-docs/src/components/guide_page/guide_page_header.tsx index a5934335a9a..70cfddecc25 100644 --- a/src-docs/src/components/guide_page/guide_page_header.tsx +++ b/src-docs/src/components/guide_page/guide_page_header.tsx @@ -70,7 +70,7 @@ export const GuidePageHeader: React.FunctionComponent = ({ itemCount={euiVersions.length} itemSize={24} height={200} - width="100%" + width={120} innerElementType="ul" > {({ index, style }) => {