Added padding to search tab to maintain visual consistancy

(cherry picked from commit 55ef505d740a9aadc7f161274006e150b0d9cf8f)
This commit is contained in:
Tristan Kennedy 2022-04-16 14:28:22 +10:00 committed by Bogdan
parent 8a88cfc466
commit 27b298400e
2 changed files with 9 additions and 3 deletions

View File

@ -7,3 +7,9 @@
.filteredMessage {
margin-top: 10px;
}
.blankpad {
padding-top: 10px;
padding-bottom: 10px;
padding-left: 2em;
}

View File

@ -124,7 +124,7 @@ function InteractiveSearch(props) {
{
!isFetching && error ?
<div>
<div className={styles.blankpad}>
{translate('UnableToLoadInteractiveSearch')}
</div> :
null
@ -132,7 +132,7 @@ function InteractiveSearch(props) {
{
!isFetching && isPopulated && !totalReleasesCount ?
<div>
<div className={styles.blankpad}>
{translate('NoResults')}
</div> :
null
@ -140,7 +140,7 @@ function InteractiveSearch(props) {
{
!!totalReleasesCount && isPopulated && !items.length ?
<div>
<div className={styles.blankpad}>
{translate('AllResultsFiltered')}
</div> :
null