mirror of
https://github.com/Radarr/Radarr.git
synced 2025-04-23 05:57:07 -04:00
Added padding to search tab to maintain visual consistancy
This commit is contained in:
parent
cabdad6306
commit
55ef505d74
2 changed files with 9 additions and 3 deletions
|
@ -7,3 +7,9 @@
|
|||
.filteredMessage {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.blankpad {
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
padding-left: 2em;
|
||||
}
|
||||
|
|
|
@ -127,21 +127,21 @@ function InteractiveSearchContent(props) {
|
|||
|
||||
{
|
||||
!isFetching && !!error &&
|
||||
<div>
|
||||
<div className={styles.blankpad}>
|
||||
{translate('UnableToLoadResultsIntSearch')}
|
||||
</div>
|
||||
}
|
||||
|
||||
{
|
||||
!isFetching && isPopulated && !totalReleasesCount &&
|
||||
<div>
|
||||
<div className={styles.blankpad}>
|
||||
{translate('NoResultsFound')}
|
||||
</div>
|
||||
}
|
||||
|
||||
{
|
||||
!!totalReleasesCount && isPopulated && !items.length &&
|
||||
<div>
|
||||
<div className={styles.blankpad}>
|
||||
{translate('AllResultsHiddenFilter')}
|
||||
</div>
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue