Skip to content

Commit 2765561

Browse files
committed
fixed positioning when Android soft keyboard toggles rapidly
1 parent 07e71e1 commit 2765561

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/terminal/terminal.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,11 @@
8383
}
8484
</div>
8585
<div class="overflow-hidden flex-fill position-relative">
86-
<div class="position-absolute w-100 h-100">
86+
<div class="position-absolute w-100 h-100 top-0 bottom-0">
8787
<app-terminal-size-calculator [(size)]="termSize" (pendingResizeChange)="pendingResize = $event">
8888
</app-terminal-size-calculator>
8989
</div>
90-
<div class="position-absolute w-100 h-100 tabs-container" [ngbNavOutlet]="nav"></div>
90+
<div class="position-absolute w-100 h-100 top-0 bottom-0 tabs-container" [ngbNavOutlet]="nav"></div>
9191
</div>
9292
</div>
9393

0 commit comments

Comments
 (0)