Merge pull request #24773 from drodil/notifications_ui_improvements

fix: do not show scrollbars in notification description if not needed
This commit is contained in:
Ben Lambert
2024-05-15 09:42:21 +02:00
committed by GitHub
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-notifications': patch
---
Do not always show scrollbars in notification description
@@ -43,7 +43,7 @@ const ThrottleDelayMs = 1000;
const useStyles = makeStyles({
description: {
maxHeight: '5rem',
overflow: 'scroll',
overflow: 'auto',
},
severityItem: {
alignContent: 'center',