feat(landing): add backend bundles scheme

This commit is contained in:
u.ahmetvaliyev 2019-01-23 18:29:37 +03:00
parent 32bf572d6f
commit 1c3dc2daed
7 changed files with 22 additions and 0 deletions

View file

@ -23,6 +23,11 @@
</li>
</ul>
<picture class="bundle-scheme">
<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">
</picture>
<div class="package-switcher">
<div [(ngModel)]="licenseType" ngbRadioGroup
class="package-switcher__btn-group btn-group btn-group-toggle btn-outline-toggle-group btn-group-full-width btn-toggle-radio-group">

View file

@ -66,6 +66,22 @@
}
}
.bundle-scheme {
display: none;
width: 100%;
height: auto;
margin: 2.5rem auto;
padding: 0 11px;
&__image {
width: 100%;
}
@include media-breakpoint-up(md) {
display: block;
}
}
.package-switcher {
margin: 2.375rem 0 5rem;

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 140 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

View file

@ -31,6 +31,7 @@
"e2e": "ng e2e",
"docs": "compodoc -p src/tsconfig.app.json -d docs",
"docs:build": "npm run build -- docs --prod --aot --base-href /ngx-admin/",
"docs:build-stg": "npm run build -- docs --prod --aot",
"docs:serve": "npm start -- docs --port 4100 --host 0.0.0.0",
"docs:gh-pages": "npm run docs:build && npm run ngh -- --dir ./docs/dist",
"prepush": "npm run lint:ci",