1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-02-22 06:03:22 +01: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

1
src/assets/empty.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.9 KiB

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>