From 6809615e46cf3bff6eee4c40b8ef6d3e9f3d3f90 Mon Sep 17 00:00:00 2001 From: Tijana Maksimovic Date: Fri, 4 May 2018 11:02:14 +0200 Subject: [PATCH] TT#36175 [Fix] Global: Adjust position of the FAB on mobile devices Change-Id: Ib7176ba62df51e2c9d657878c6464f5702cd6168 --- src/components/layouts/Default.vue | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/src/components/layouts/Default.vue b/src/components/layouts/Default.vue index 8553715d..9e4e2adf 100644 --- a/src/components/layouts/Default.vue +++ b/src/components/layouts/Default.vue @@ -236,7 +236,7 @@ }, fabOffset() { if(Platform.is.mobile) { - return [6, 6]; + return [1, 2]; } else { return [48, 17]; @@ -420,6 +420,20 @@ z-index: 1001; } + @media only screen and (min-width: 425px) and (orientation: portrait) { + #global-action-btn { + margin: 15px 60px !important; + top: 60px; + } + } + + @media only screen and (min-width: 768px) and (orientation: landscape) { + #global-action-btn { + margin: 17px 48px !important; + top: 60px; + } + } + .layout-aside.fixed.csc-call-fullscreen { left: 0; right: 0;