Skip to content

Commit

Permalink
ui make up
Browse files Browse the repository at this point in the history
  • Loading branch information
furknyavuz committed Aug 29, 2021
1 parent 9733bc3 commit c6ff130
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<app-card1 [enableHeaderFullImg]="false" [height]="option.styles.height"
[paddingContent]="false"
[ribbon]="option.ribbon ? option.ribbon : RIBBONS.default"
[width]="option.styles.width" [maxHeight]="'500px'"
[width]="option.styles.width" [maxHeight]="false"
[containsVideo]="false" [enableHeader]="false" [style.font-size]="option.styles.fontSize">
<div body class="content-wrapper">
<p class="subscription-header">{{ option.title }}</p>
Expand All @@ -14,13 +14,10 @@
<hr>
<div class="subscription-features" [style.height]="option.styles.featureHeight">
<p *ngFor="let feture of option.features">
<i class="material-icons">check</i>
<i aria-hidden="true" class="material-icons">check</i>
<span>{{ feture }}</span>
</p>
</div>
<!--<app-button1 (click)="routeToEvent(option.link ? option.link : URLS.maintenance)" [brandColor]="true"
[isSleekButton]="true" [relativeToParent]="true" [text]="'SELECT'">
</app-button1>-->
<app-button1 (click)="routeToEvent(option.link ? option.link : URLS.maintenance)"
[brandColor]="true" [icon]="'shopping-cart'" [isSleekButton]="true" [relativeToParent]="true"
[text]="'Buy Now'">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
Services
</span>
</a>
<a *ngIf="!openSettings" routerLink="{{ URLS.maintenance }}">
<a *ngIf="!openSettings" routerLink="{{ URLS.pricing }}">
<i aria-hidden="true" [class]="'fas fa-dollar-sign fa-fw'"></i>
<span>
Pricing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ <h2>Open Template Hub</h2>
<i aria-hidden="true" class="material-icons">expand_more</i>
</app-dropdown-menu>
</a>
<a routerLink="{{URLS.maintenance}}">
<a routerLink="{{URLS.pricing}}">
<span>
Pricing
</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export class PricingComponent implements OnInit {

basicOption: PricingOption = {
title: 'BASIC',
ribbon: { type: 'featured', text: 'DEAL' },
ribbon: { type: 'error', text: 'DEAL' },
price: {
currency: '$',
value: '49',
Expand Down
1 change: 1 addition & 0 deletions src/app/util/constant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ export const URLS = {
cookiePolicy: '/cookie-policy',
privacyPolicy: '/privacy-policy',
terms: '/terms',
pricing: '/pricing',
showroom: '/showroom',
dashboard: {
root: dashboard,
Expand Down

0 comments on commit c6ff130

Please sign in to comment.