Skip to content

Commit

Permalink
Merge pull request #24773 from drodil/notifications_ui_improvements
Browse files Browse the repository at this point in the history
fix: do not show scrollbars in notification description if not needed
  • Loading branch information
benjdlambert committed May 15, 2024
2 parents 0e4131e + 7f02684 commit 7a49eda
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/four-adults-mix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@backstage/plugin-notifications': patch
---

Do not always show scrollbars in notification description
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const ThrottleDelayMs = 1000;
const useStyles = makeStyles({
description: {
maxHeight: '5rem',
overflow: 'scroll',
overflow: 'auto',
},
severityItem: {
alignContent: 'center',
Expand Down

0 comments on commit 7a49eda

Please sign in to comment.