Commit ffcd4c49 authored by Mark Harding's avatar Mark Harding

(fix): resolved #1060 - Navigate to group conversations missing on in mobile web

parent d1d7fbfd
No related merge requests found
Pipeline #64836654 passed with stages
in 44 minutes and 22 seconds
@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;
}
}
}
......
......@@ -253,23 +253,10 @@
</div> <!-- End Feeds -->
</div> <!-- END LEFT BLOCK -->
<div class="m-groupGrid__toggleBtn" style="
/* left: 0; */
position: fixed;
top: 55px;
right: 65px;
display: block;
z-index: 99;
cursor: pointer;
"
(click)="toggleConversations()">
<i class="material-icons" style="
font-size: 32px;
" *ngIf="showRight">keyboard_arrow_right</i>
<i class="material-icons" style="
font-size: 32px;
" *ngIf="!showRight">keyboard_arrow_left</i>
</div>
<div class="m-groupGrid__toggleBtn" (click)="toggleConversations()">
<i class="material-icons" *ngIf="showRight">keyboard_arrow_right</i>
<i class="material-icons" *ngIf="!showRight">keyboard_arrow_left</i>
</div>
<div class="m-groupGrid__right" [hidden]="!showRight">
<!-- Conversation filter -->
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment