Scroll
To ensure keyboard-only users have access to the scrollable regions, the optimal solution is to apply
tabIndex="0"
to the region. Learn more about the scrollable-region-focusable
rule at Deque.Scroll bar style
.eui-scrollBar
className
Use this utility class to style the browser's scrollbar in a minimal aesthetic. This is best used on small, inner-page contents like panels wherever you have overflow: auto
.
useEuiScrollBar()
hook
Use this style function to style the browser's scrollbar in a minimal aesthetic. This is best used on small, inner-page contents like panels.
All parameters are optional and default to specific global settings.
Vertical (scroll-y)
These utilities allow for quickly applying vertical scrolling to a container. They also automatically apply the minimal scroll bar styles as well. If you do not want your content to stretch to 100%
height, you will need to manually add a height
(or max-height
) to the container.
The WithShadows
variants are primarily used in modals and flyouts and masks the edges to indicate there is more content. When using these variants, you may want to add a small amount padding to the top and bottom of your content so the mask doesn't overlay it.
useEuiOverflowScroll('y')
hook
Styles hook for adding vertical scrolling to a container.
To mask the top and bottom of the scrolled content, indicating visually that there is more content below, pass in true to the second parameter mask
.
useEuiOverflowScroll('y', true);
Horizontal (scroll-x)
The horizontal equivalent should be used sparingly and usually only in full-height layouts or a grid of items.
When using the WithShadows
variant, you may want to add a small amount padding to the sides of your content so the mask doesn't overlay it.
useEuiOverflowScroll('x')
hook
Styles hook for adding horizontal scrolling to a container.
To mask the top and bottom of the scrolled content, indicating visually that there is more content below, pass in true to the second parameter mask
.
useEuiOverflowScroll('x', true);