Notice: prevent whitespace wrap

This commit is contained in:
rektdeckard
2020-10-12 22:48:44 -04:00
parent 587c6a2fe4
commit 783f5077fb
2 changed files with 2 additions and 1 deletions

View File

@@ -163,6 +163,7 @@
min-height: 80vh; min-height: 80vh;
max-width: 1120px; max-width: 1120px;
margin: auto; margin: auto;
white-space: nowrap;
} }
.empty-list p { .empty-list p {

View File

@@ -37,7 +37,7 @@ const IconGrid: React.FC<IconGridProps> = () => {
if (!filteredQueryResults.length) if (!filteredQueryResults.length)
return ( return (
<Notice> <Notice>
Try searching a category or keyword: <span>Try searching a category or keyword:</span>
<TagCloud name="empty-state" isDark={isDark} tags={defaultSearchTags} /> <TagCloud name="empty-state" isDark={isDark} tags={defaultSearchTags} />
</Notice> </Notice>
); );