From ff06b419f2327830190cd267d73ea6aa70de119f Mon Sep 17 00:00:00 2001 From: Willem Dantuma Date: Fri, 12 Jun 2020 12:53:43 +0200 Subject: [PATCH] Fix top in fullscreen mode --- projects/common/src/fm/components/app/app.component.scss | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/projects/common/src/fm/components/app/app.component.scss b/projects/common/src/fm/components/app/app.component.scss index 53cadc5..5782958 100644 --- a/projects/common/src/fm/components/app/app.component.scss +++ b/projects/common/src/fm/components/app/app.component.scss @@ -78,7 +78,12 @@ body { background: #f1f1f1; line-height: 18px; user-select:none;} } .user-menu { + transition: top 0.5s ease-out; position: absolute; - top:1em; + top:0.25em; right:1em; } + +.fullscreen > .user-menu { + top:1em; +}