1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-07-30 18:20:15 +02:00

saveditempane: add empty state img

This commit is contained in:
Kushagra Gour
2019-03-14 02:10:47 +05:30
parent e36e759a5f
commit 8fc5a3c4e7
2 changed files with 5 additions and 1 deletions

View File

@@ -202,7 +202,10 @@ export default class SavedItemPane extends Component {
/>
))}
{!items.length ? (
<h2 class="opacity--30">Nothing saved here.</h2>
<div class="tac">
<h2 class="opacity--30">Nothing saved here.</h2>
<img style="max-width: 80%; opacity:0.4" src="assets/empty.svg" />
</div>
) : null}
</div>
</div>