Make sure blocks list container is at least 100vh on mobile

This commit is contained in:
nymkappa 2022-03-22 15:43:04 +09:00
parent e1623b9234
commit 7c1155ec93
No known key found for this signature in database
GPG Key ID: E155910B16E8BD04
2 changed files with 6 additions and 1 deletions

View File

@ -1,4 +1,4 @@
<div class="container-xl" [class]="widget ? 'widget' : ''">
<div class="container-xl" [class]="widget ? 'widget' : 'full-height'">
<h1 *ngIf="!widget" class="float-left" i18n="latest-blocks.blocks">Blocks</h1>
<div class="clearfix"></div>

View File

@ -66,6 +66,11 @@ body {
.container-xl {
padding-bottom: 60px;
}
.full-height {
@media (max-width: 767.98px) {
min-height: 100vh;
}
}
:focus {
outline: none !important;