From 55ef505d740a9aadc7f161274006e150b0d9cf8f Mon Sep 17 00:00:00 2001 From: Tristan Kennedy Date: Sat, 16 Apr 2022 14:28:22 +1000 Subject: [PATCH] Added padding to search tab to maintain visual consistancy --- frontend/src/InteractiveSearch/InteractiveSearchContent.css | 6 ++++++ frontend/src/InteractiveSearch/InteractiveSearchContent.js | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/frontend/src/InteractiveSearch/InteractiveSearchContent.css b/frontend/src/InteractiveSearch/InteractiveSearchContent.css index 5e647332f..a8d1c62a6 100644 --- a/frontend/src/InteractiveSearch/InteractiveSearchContent.css +++ b/frontend/src/InteractiveSearch/InteractiveSearchContent.css @@ -7,3 +7,9 @@ .filteredMessage { margin-top: 10px; } + +.blankpad { + padding-top: 10px; + padding-bottom: 10px; + padding-left: 2em; +} diff --git a/frontend/src/InteractiveSearch/InteractiveSearchContent.js b/frontend/src/InteractiveSearch/InteractiveSearchContent.js index 56f58c0c5..efa9324d8 100644 --- a/frontend/src/InteractiveSearch/InteractiveSearchContent.js +++ b/frontend/src/InteractiveSearch/InteractiveSearchContent.js @@ -127,21 +127,21 @@ function InteractiveSearchContent(props) { { !isFetching && !!error && -
+
{translate('UnableToLoadResultsIntSearch')}
} { !isFetching && isPopulated && !totalReleasesCount && -
+
{translate('NoResultsFound')}
} { !!totalReleasesCount && isPopulated && !items.length && -
+
{translate('AllResultsHiddenFilter')}
}