From 07747e73d6380fbc5e637662b0e80b10efd6683a Mon Sep 17 00:00:00 2001 From: Yunus M Date: Fri, 15 Mar 2024 13:25:06 +0530 Subject: [PATCH] fix: context filter input overflow issue, min height for logs list view (#4710) --- .../QueryBuilderSearchWrapper.styles.scss | 19 +++++++++++-------- .../LogsExplorerList.style.scss | 1 + 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/frontend/src/components/LogDetail/QueryBuilderSearchWrapper.styles.scss b/frontend/src/components/LogDetail/QueryBuilderSearchWrapper.styles.scss index e3da355621..2a6822dc00 100644 --- a/frontend/src/components/LogDetail/QueryBuilderSearchWrapper.styles.scss +++ b/frontend/src/components/LogDetail/QueryBuilderSearchWrapper.styles.scss @@ -1,10 +1,13 @@ .query-builder-search-wrapper { - margin-top: 10px; - height: 46px; - border: 1px solid var(--bg-slate-400); - border-bottom: none; + margin-top: 10px; + border: 1px solid var(--bg-slate-400); + border-bottom: none; - .ant-select-selector { - border: none !important; - } -} \ No newline at end of file + .ant-select-selector { + border: none !important; + + input { + font-size: 12px; + } + } +} diff --git a/frontend/src/container/LogsExplorerList/LogsExplorerList.style.scss b/frontend/src/container/LogsExplorerList/LogsExplorerList.style.scss index 29dc383b7d..be6b8d627f 100644 --- a/frontend/src/container/LogsExplorerList/LogsExplorerList.style.scss +++ b/frontend/src/container/LogsExplorerList/LogsExplorerList.style.scss @@ -8,4 +8,5 @@ line-height: 18px; letter-spacing: -0.005em; text-align: left; + min-height: 500px; }