Fix 'no stickerpacks' placeholder to not have a scrollbar

This commit is contained in:
Travis Ralston 2019-03-24 15:09:40 -06:00
parent 2a5351404f
commit a529fc5f9f
2 changed files with 6 additions and 6 deletions

View File

@ -8,12 +8,12 @@
that has Dimension enabled and correctly set up.
</div>
</div>
<div class="no-stickers" *ngIf="!isLoading && !authError && (!packs || packs.length === 0)">
<img src="/img/no_stickers.png" />
<span class="message">You have no sticker packs.</span>
<button class="btn btn-link btn-sm" (click)="openIntegrationManager()">Add some stickers</button>
</div>
<div class="sticker-picker" *ngIf="!isLoading && !authError">
<div class="no-stickers" *ngIf="!packs || packs.length === 0">
<img src="/img/no_stickers.png" />
<span class="message">You have no sticker packs.</span>
<button class="btn btn-link btn-sm" (click)="openIntegrationManager()">Add some stickers</button>
</div>
<div class="sticker-pack" *ngFor="let pack of packs trackById">
<div class="header">
<span class="title">{{ pack.displayName }}</span>

View File

@ -32,7 +32,7 @@
img {
width: 96px;
height: 96px;
margin-top: 20px;
margin-top: 40px;
margin-bottom: 15px;
}