mirror of https://github.com/ghostfolio/ghostfolio
4 changed files with 25 additions and 26 deletions
@ -1,17 +1,19 @@ |
|||
<div |
|||
class="d-flex flex-column justify-content-between px-3 py-4 bg-dark card-item" |
|||
class="card-item d-flex flex-column justify-content-between px-3 py-4 bg-dark mx-auto" |
|||
> |
|||
<div class="d-flex justify-content-end mr-2"> |
|||
<gf-logo></gf-logo> |
|||
<gf-logo [showLabel]="false"></gf-logo> |
|||
</div> |
|||
<div class="d-flex justify-content-between"> |
|||
<div class="px-3"> |
|||
<p class="card-item-heading">Card Holder</p> |
|||
<p class="card-item-name">{{ name }}</p> |
|||
<p class="card-item-heading" i18n>Card Holder</p> |
|||
<p class="card-item-name line-height-1 text-truncate">{{ name }}</p> |
|||
</div> |
|||
<div class="px-3"> |
|||
<p class="card-item-heading">Expires</p> |
|||
<p class="card-item-name">{{ expiresAt | date: 'MM/yy' }}</p> |
|||
<p class="card-item-heading" i18n>Expires</p> |
|||
<p class="card-item-name line-height-1 text-truncate"> |
|||
{{ expiresAt | date: 'MM/yy' }} |
|||
</p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
|
Loading…
Reference in new issue