minor design changes
parent
76098e2fd0
commit
f6272a2919
|
@ -37,7 +37,7 @@
|
|||
<fa-icon *ngIf="platform.icon" [icon]="platform.icon"></fa-icon>
|
||||
<mat-label>{{platform.label}}</mat-label>
|
||||
</div>
|
||||
<button mat-flat-button class="action-button">ADD</button>
|
||||
<button mat-flat-button class="action-button">CONNECT</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -7,11 +7,11 @@
|
|||
<ng-container *ngFor="let subscription of subscriptionTypes">
|
||||
<mat-button-toggle style="padding: 8px">
|
||||
<div class="mat-h3">{{subscription.name}}</div>
|
||||
<div class="mat-body">{{subscription.price}}</div>
|
||||
<div class="mat-body">{{subscription.price}} USD</div>
|
||||
</mat-button-toggle>
|
||||
</ng-container>
|
||||
</mat-button-toggle-group>
|
||||
<div id="subscription-date" class="mat-body">Member Since {{subscriptionDate}}</div>
|
||||
<div id="subscription-date" class="mat-body">Proudly supporting Mycroft for {{subscriptionDuration}}</div>
|
||||
</div>
|
||||
</mat-card>
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ const yearlySupporter: SubscriptionType = {
|
|||
})
|
||||
export class SubscriptionComponent implements OnDestroy {
|
||||
public subscriptionTypes: SubscriptionType[];
|
||||
public subscriptionDate = 'July 10, 2017';
|
||||
public subscriptionDuration = '3 years 10 months';
|
||||
public alignVertical: boolean;
|
||||
private mediaWatcher: Subscription;
|
||||
|
||||
|
|
Loading…
Reference in New Issue