TT#36175 [Fix] Global: Adjust position of the FAB on mobile devices

Change-Id: Ib7176ba62df51e2c9d657878c6464f5702cd6168
changes/32/21032/2
Tijana Maksimovic 7 years ago
parent 6a2d0e7087
commit 6809615e46

@ -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;

Loading…
Cancel
Save