Fix height
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good Details

2022.01
Willem Dantuma 2020-07-23 11:48:31 +02:00
parent 44ae806b30
commit e0b29c905c
2 changed files with 5 additions and 5 deletions

View File

@ -27,8 +27,8 @@
<fm-user-menu [user]="user|async" [showMenu]="accountMenuVisible|async"></fm-user-menu>
</div>
<div class="healthstatus-container online" [ngClass]="{'online' :(isOnline|async)}">
<div class="healthstatus alert alert-danger" >
<span i18n>No connection, check your internet connection</span>
<div class="healthstatus alert alert-danger m-0" >
<span i18n>Not connected, make sure youre device has an active internet connection</span>
</div>
</div>
</div>

View File

@ -93,8 +93,8 @@ body { background: #f1f1f1; line-height: 18px; user-select:none;}
position: absolute;
bottom: 0px;
overflow: hidden;
transition: height 0.5s ease-out;
height:3.25em;
transition: max-height 0.5s ease-out;
max-height:5em;
}
.healthstatus {
@ -103,5 +103,5 @@ body { background: #f1f1f1; line-height: 18px; user-select:none;}
}
.online {
height:0;
max-height:0em;
}