Commit 054f908f by Hugo Häggmark Committed by GitHub

Explore: Fixes Legend overflow in splitted view (#18396)

* Fix: Fixes Legend overflow in Explore splitted view

* Chore: Removes overflow-x because of accessibility POV and uses pre-wrap instead
parent 3481caf4
...@@ -44,7 +44,7 @@ export const GraphLegendListItem: React.FunctionComponent<GraphLegendItemProps> ...@@ -44,7 +44,7 @@ export const GraphLegendListItem: React.FunctionComponent<GraphLegendItemProps>
}} }}
className={css` className={css`
cursor: pointer; cursor: pointer;
white-space: nowrap; white-space: pre-wrap;
color: ${!item.isVisible && theme.colors.linkDisabled}; color: ${!item.isVisible && theme.colors.linkDisabled};
`} `}
> >
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment