Commit 4e40c2d4 authored by Olivia Madrid's avatar Olivia Madrid

(wip): Referrals console - hide messenger button on mobile

1 merge request!388WIP: epic/referrals
Pipeline #70178355 passed with stages
in 28 minutes and 19 seconds
......@@ -55,6 +55,9 @@
<div class="m-referrals-dashboard__joinMessageButton">
<m-messenger--channel-button [user]="referral.prospect"></m-messenger--channel-button>
</div>
<div class="m-referrals-dashboard__joinPendingIcon">
<i class="material-icons">timelapse</i>
</div>
</ng-template>
</div>
</ng-container>
......
......@@ -148,6 +148,17 @@
}
}
.m-referrals-dashboard__joinPendingIcon {
display: none;
margin-left: 12px;
> i {
@include m-theme(){
color: themed($m-grey-200);
}
}
}
@media screen and (max-width: 910px) {
.m-referrals-dashboard__row.m-referrals-dashboard__headerRow {
span {
......@@ -181,4 +192,16 @@
max-width: 75px;
}
}
// replace message button with a pending icon in the 'wallet signup' column for mobile users
@media only screen and (max-width: $max-mobile) {
.m-referrals-dashboard__joinMessageButton {
display: none !important;
}
.m-referrals-dashboard__joinPendingIcon {
display: flex;
}
}
}
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