From 0636c9bc82c3017f7f846544564bf33d1c830b48 Mon Sep 17 00:00:00 2001 From: Ashokaditya Date: Wed, 30 Jun 2021 14:54:14 +0200 Subject: [PATCH] [Security Solution][Endpoint] Allow activity log scrolling on small screens (#103852) --- .../endpoint_hosts/view/details/endpoint_activity_log.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/details/endpoint_activity_log.tsx b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/details/endpoint_activity_log.tsx index f1701054c4d5f..360d6e3842816 100644 --- a/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/details/endpoint_activity_log.tsx +++ b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/details/endpoint_activity_log.tsx @@ -31,6 +31,9 @@ import { getActivityLogRequestLoading, } from '../../store/selectors'; +const StyledEuiFlexGroup = styled(EuiFlexGroup)` + height: 85vh; +`; const LoadMoreTrigger = styled.div` height: 6px; width: 100%; @@ -79,7 +82,7 @@ export const EndpointActivityLog = memo( return ( <> - + {(activityLogLoaded && !activityLogSize) || activityLogError ? ( )} - + ); }