Merge pull request #5734 from kuangp/fix/shortcuts

fix(shortcuts): prevent horizontal scrollbar
This commit is contained in:
Fredrik Adelöw
2021-05-20 14:55:13 +02:00
committed by GitHub
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-shortcuts': patch
---
Fix horizontal scroll bar appearance issue
+1 -1
View File
@@ -26,7 +26,7 @@ import { shortcutsApiRef } from './api';
const useStyles = makeStyles({
root: {
flex: '1 1 auto',
overflow: 'scroll',
overflowY: 'scroll',
},
});