From 293b4c2cfab41ff196f07e9d755bedefb0c37b49 Mon Sep 17 00:00:00 2001 From: Michael Coker <35148959+mcoker@users.noreply.github.com> Date: Wed, 9 Nov 2022 20:25:42 -0600 Subject: [PATCH] fix(notification-drawer): set body to fill available vertical space (#5214) --- .../components/NotificationDrawer/notification-drawer.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/src/patternfly/components/NotificationDrawer/notification-drawer.scss b/src/patternfly/components/NotificationDrawer/notification-drawer.scss index 0753483501..e8a37cd5a4 100644 --- a/src/patternfly/components/NotificationDrawer/notification-drawer.scss +++ b/src/patternfly/components/NotificationDrawer/notification-drawer.scss @@ -129,6 +129,7 @@ } .pf-c-notification-drawer__body { + flex: 1; overflow-y: auto; box-shadow: var(--pf-c-notification-drawer__body--ZIndex); }