Scroll
Scrollable regions must be focusable, promoted to region and with the right aria-label
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
.
tsx code block:<div tabIndex={0} className="eui-scrollBar"> <EuiPanel /> <EuiPanel /> <EuiPanel /> </div>