fix(tech-radar): allow entries on radar legend to be clickable

This commit is contained in:
Niall McCullagh
2021-01-28 16:59:05 +00:00
parent 90c8f20b9f
commit 9c7efe1535
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -3,3 +3,4 @@
---
Fix mapping RadarEntry and Entry for moved and url attributes
Fix clicking of links in the radar legend
@@ -71,12 +71,12 @@ const useStyles = makeStyles<Theme>(theme => ({
'font-feature-settings': 'pnum',
},
entry: {
pointerEvents: 'none',
pointerEvents: 'visiblePainted',
userSelect: 'none',
fontSize: '11px',
},
entryLink: {
pointerEvents: 'none',
pointerEvents: 'visiblePainted',
},
}));