From cdd5d56150b25e7f93bdb95fc28326f1ad2a2c74 Mon Sep 17 00:00:00 2001 From: Mirlan Date: Wed, 3 Feb 2021 14:33:28 +0600 Subject: [PATCH] fix(706): added players list max height (#285) --- src/features/MatchPopup/components/PlayersListDesktop/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/MatchPopup/components/PlayersListDesktop/index.tsx b/src/features/MatchPopup/components/PlayersListDesktop/index.tsx index a59d61f3..bdcea602 100644 --- a/src/features/MatchPopup/components/PlayersListDesktop/index.tsx +++ b/src/features/MatchPopup/components/PlayersListDesktop/index.tsx @@ -17,7 +17,7 @@ const Wrapper = styled.div` const ListsWrapper = styled.div` width: 100%; - height: 325px; + max-height: 515px; overflow-y: auto; margin-top: 10px; display: flex;