mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-18 08:20:13 +01:00
fix(bundles): fix table
This commit is contained in:
parent
9fc42b19c0
commit
fd48698a88
3 changed files with 27 additions and 16 deletions
|
|
@ -174,7 +174,7 @@
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<table class="features-table">
|
<table class="features-table">
|
||||||
<tr>
|
<tr class="header">
|
||||||
<th class="left">FEATURES</th>
|
<th class="left">FEATURES</th>
|
||||||
<th>PERSONAL</th>
|
<th>PERSONAL</th>
|
||||||
<th>COMMERCIAL</th>
|
<th>COMMERCIAL</th>
|
||||||
|
|
@ -243,6 +243,7 @@
|
||||||
|
|
||||||
<ngx-landing-description-section *ngIf="descriptions | async" [descriptions]="descriptions | async"></ngx-landing-description-section>
|
<ngx-landing-description-section *ngIf="descriptions | async" [descriptions]="descriptions | async"></ngx-landing-description-section>
|
||||||
|
|
||||||
|
<div class="bundles-architecture">
|
||||||
<ngx-landing-section-title>
|
<ngx-landing-section-title>
|
||||||
Architecture Design
|
Architecture Design
|
||||||
</ngx-landing-section-title>
|
</ngx-landing-section-title>
|
||||||
|
|
@ -253,6 +254,7 @@
|
||||||
<source type="image/webp" srcset="assets/img/bundle-scheme@1x.webp 1x, assets/img/bundle-scheme@2x.webp 2x">
|
<source type="image/webp" srcset="assets/img/bundle-scheme@1x.webp 1x, assets/img/bundle-scheme@2x.webp 2x">
|
||||||
<img class="bundle-scheme__image" src="assets/img/bundle-scheme@1x.png" srcset="assets/img/bundle-scheme@2x.png 2x" alt="Backend bundles">
|
<img class="bundle-scheme__image" src="assets/img/bundle-scheme@1x.png" srcset="assets/img/bundle-scheme@2x.png 2x" alt="Backend bundles">
|
||||||
</picture>
|
</picture>
|
||||||
|
</div>
|
||||||
|
|
||||||
<p class="features__description">Need more details or have a question?</p>
|
<p class="features__description">Need more details or have a question?</p>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -67,15 +67,19 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.bundle-scheme {
|
.bundles-architecture {
|
||||||
display: none;
|
display: none;
|
||||||
|
margin-bottom: 5rem;
|
||||||
|
|
||||||
|
.bundle-scheme {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: auto;
|
height: auto;
|
||||||
margin: 2.5rem auto 5rem;
|
margin: 2.5rem auto;
|
||||||
|
|
||||||
&__image {
|
&__image {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@include media-breakpoint-up(md) {
|
@include media-breakpoint-up(md) {
|
||||||
display: block;
|
display: block;
|
||||||
|
|
@ -329,7 +333,6 @@
|
||||||
background-color: #fafafa;
|
background-color: #fafafa;
|
||||||
|
|
||||||
th, td {
|
th, td {
|
||||||
//border: 0.5px solid #dae0eb;
|
|
||||||
padding: 0.5rem;
|
padding: 0.5rem;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
@ -360,6 +363,12 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.features-table {
|
||||||
|
.header {
|
||||||
|
font-size: 0.875rem
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include media-breakpoint-down(is) {
|
@include media-breakpoint-down(is) {
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ import { Descriptions, DescriptionsService } from '../../../@core/data/service/d
|
||||||
})
|
})
|
||||||
export class BackendBundlesSectionComponent implements AfterViewInit {
|
export class BackendBundlesSectionComponent implements AfterViewInit {
|
||||||
|
|
||||||
descriptions: Observable<Descriptions[]> = this.descriptionsService.getDescriptions();
|
descriptions: Observable<Descriptions[]> = this.descriptionsService.getBundleDescriptions();
|
||||||
|
|
||||||
selectedLicenseType = 'Personal';
|
selectedLicenseType = 'Personal';
|
||||||
personalLicense = 'Personal';
|
personalLicense = 'Personal';
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue