Skip to content

Commit

Permalink
Addressed issue on homepage
Browse files Browse the repository at this point in the history
  • Loading branch information
tkakar committed Dec 19, 2024
1 parent 22144a8 commit 41a4c3a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG-home-scrolling-accessibility-issue copy
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.
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 41a4c3a

Please sign in to comment.