Skip to content
Snippets Groups Projects

[Sprint/FunnyFrog](bug): Fixed toggle button hidden behind groups bar mobile. #1060

Closed Ben requested to merge benhayward.ben/front:group-chat-navigation-fix-1060 into master
All threads resolved!
Files
2
@import "defaults";
.m-group__grid {
display: flex;
flex-direction: row;
@@ -23,15 +25,25 @@
}
.m-groupGrid__toggleBtn {
display: block;
z-index: 99;
cursor: pointer;
position: fixed;
right: 65px;
top: 55px;
@media screen and (max-width: $min-desktop) {
right: 8px;
top: 106px;
}
i {
font-size: 32px;
}
.material-icons {
@include m-theme(){
text-shadow: 0px 0px 1px themed($m-white), 0px 0px 1px themed($m-white);
color: themed($m-grey-400);
}
}
@media screen and (max-width: 900px) {
right: 8px !important;
}
}
}
Loading