From e0b29c905c2c7b5f6c9307b7be4eb57b500c2978 Mon Sep 17 00:00:00 2001 From: Willem Dantuma Date: Thu, 23 Jul 2020 11:48:31 +0200 Subject: [PATCH] Fix height --- projects/common/src/fm/components/app/app.component.html | 4 ++-- projects/common/src/fm/components/app/app.component.scss | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/projects/common/src/fm/components/app/app.component.html b/projects/common/src/fm/components/app/app.component.html index b449d64..f4d8c1d 100644 --- a/projects/common/src/fm/components/app/app.component.html +++ b/projects/common/src/fm/components/app/app.component.html @@ -27,8 +27,8 @@
-
- No connection, check your internet connection +
+ Not connected, make sure youre device has an active internet connection
diff --git a/projects/common/src/fm/components/app/app.component.scss b/projects/common/src/fm/components/app/app.component.scss index fee4b35..2a4a243 100644 --- a/projects/common/src/fm/components/app/app.component.scss +++ b/projects/common/src/fm/components/app/app.component.scss @@ -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; }