This commit is contained in:
Eugene Pankov
2021-07-27 22:25:19 +02:00
parent e15a2d3989
commit dbf1ec5f3c
5 changed files with 45 additions and 15 deletions

View File

@@ -49,7 +49,10 @@
.container
.row
.col-12.col-xl-6
img.screenshot([src]='screenshots.window', loading='lazy')
lib-ngx-image-zoom(
[fullImage]='screenshots.window',
[thumbImage]='screenshots.window'
)
.col-12.col-xl-6
h1 The important stuff
ul
@@ -79,13 +82,19 @@
li Optional #[strong global hotkey] to focus/hide the terminal
li Bracketed paste
.col-12.col-xl-6
img.screenshot([src]='screenshots.tabs', loading='lazy')
lib-ngx-image-zoom(
[fullImage]='screenshots.tabs',
[thumbImage]='screenshots.tabs'
)
.section.section-a
.container
.row
.col-12.col-xl-6
img.screenshot([src]='screenshots.ssh', loading='lazy')
lib-ngx-image-zoom(
[fullImage]='screenshots.ssh',
[thumbImage]='screenshots.ssh'
)
.col-12.col-xl-6
h1 SSH Client
ul
@@ -110,13 +119,19 @@
li Optional #[strong portable mode]
li Current directory detection that works
.col-12.col-xl-6
img.screenshot([src]='screenshots.win', loading='lazy')
lib-ngx-image-zoom(
[fullImage]='screenshots.win',
[thumbImage]='screenshots.win'
)
.section.section-a
.container
.row
.col-12.col-xl-6
img.screenshot([src]='screenshots.serial', loading='lazy')
lib-ngx-image-zoom(
[fullImage]='screenshots.serial',
[thumbImage]='screenshots.serial'
)
.col-12.col-xl-6
h1 Serial Terminal
ul

View File

@@ -96,11 +96,6 @@ strong {
.section {
padding: 50px 0;
.screenshot {
min-width: 0;
max-width: 100%;
}
}
.section-a {
@@ -109,3 +104,14 @@ strong {
.section-b {
}
::ng-deep lib-ngx-image-zoom {
width: 100%;
display: block;
img {
min-width: 100px;
max-width: 100%;
width: 100%;
}
}