Add “No emoji found” to empty search results
parent
c51503a662
commit
ecd2eb5e74
|
@ -69,6 +69,17 @@
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.emoji-picker-no-results {
|
||||||
|
font-size: 14px;
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 70px;
|
||||||
|
color: #858585;
|
||||||
|
}
|
||||||
|
.emoji-picker-no-results span {
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
.emoji-picker-preview {
|
.emoji-picker-preview {
|
||||||
position: relative;
|
position: relative;
|
||||||
height: 70px;
|
height: 70px;
|
||||||
|
|
|
@ -64,6 +64,20 @@ export default class Category extends React.Component {
|
||||||
{...emojiProps}
|
{...emojiProps}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
|
{!emojis.length &&
|
||||||
|
<div className='emoji-picker-no-results'>
|
||||||
|
<Emoji
|
||||||
|
{...emojiProps}
|
||||||
|
size={22}
|
||||||
|
emoji='sleuth_or_spy'
|
||||||
|
/>
|
||||||
|
|
||||||
|
<span className='emoji-picker-no-results-label'>
|
||||||
|
No emoji found
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue