Move the author information to below the pack name

This commit is contained in:
Travis Ralston 2018-06-17 12:09:55 -06:00
parent c89bb6df5e
commit 7f446c7b9c
2 changed files with 13 additions and 2 deletions

View File

@ -18,7 +18,7 @@
<span class="title">{{ pack.displayName }}</span>
<span class="license"><a [href]="pack.license.urlPath" target="_blank">{{ pack.license.name }}</a></span>
<span class="author" *ngIf="pack.author.type !== 'none'">
<a [href]="pack.author.reference" target="_blank">{{ pack.author.name }}</a> |&nbsp;
<a [href]="pack.author.reference" target="_blank">{{ pack.author.name }}</a>
</span>
</div>

View File

@ -39,7 +39,7 @@
color: #222222;
}
.author, .license {
.license {
font-size: 0.6em;
font-weight: 300;
color: #b5b5b5;
@ -50,6 +50,17 @@
color: #b5b5b5;
}
}
.author {
font-size: 0.6em;
font-weight: 300;
color: #222222;
display: block;
a {
color: #222222;
}
}
}
.stickers {