Skip to content

Commit

Permalink
Fix text truncation/available width on webkit browsers
Browse files Browse the repository at this point in the history
- for some reason they're rendering a full scrollbar and cutting into the item width when FF doesn't
  • Loading branch information
cee-chen committed Oct 19, 2023
1 parent 0a212ac commit 6a52384
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-docs/src/components/guide_page/guide_page_header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export const GuidePageHeader: React.FunctionComponent<GuidePageHeaderProps> = ({
itemCount={euiVersions.length}
itemSize={24}
height={200}
width="100%"
width={120}
innerElementType="ul"
>
{({ index, style }) => {
Expand Down

0 comments on commit 6a52384

Please sign in to comment.