Skip to content

Commit

Permalink
Addressed scrolling accessibility issue on homepage (#3656)
Browse files Browse the repository at this point in the history
* Addressed issue on homepage

* Fixed changelog file
  • Loading branch information
tkakar authored Jan 6, 2025
1 parent 69f3715 commit c174175
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG-home-scrolling-accessibility-issue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Addressed accessibility issue on home page to ensure elements with scrollable content are accessible by keyboard.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function ChartWrapper({ children, chartTitle, margin, colorScale, dropdown, allK
</Box>
<Stack sx={{ paddingTop: `${margin.top}px`, height: `calc(100% - ${margin.bottom}px)`, maxWidth: 175 }}>
{dropdown && <Box sx={{ marginBottom: 1, minWidth: 0 }}>{dropdown}</Box>}
<Box sx={{ flex: 1, overflowY: 'auto' }}>
<Box sx={{ flex: 1, overflowY: 'auto' }} tabIndex={0}>
<LegendOrdinal
scale={colorScale}
labelMargin="0 15px 0 0"
Expand Down

0 comments on commit c174175

Please sign in to comment.