Commit b53b08b0 authored by Mark Harding's avatar Mark Harding

(fix): css to allow for tooltip overflow

1 merge request!590WIP: Epic/pro affiliate launch
Pipeline #89152006 pending with stages
......@@ -65,7 +65,7 @@ m-analytics__metrics {
}
.metricsWrapper {
position: relative;
overflow: hidden;
// overflow: hidden;
width: 100%;
@include m-theme() {
box-shadow: 0 7px 15px -7px rgba(themed($m-black-always), 0.1);
......@@ -76,7 +76,7 @@ m-analytics__metrics {
position: relative;
display: flex;
flex-wrap: nowrap;
overflow-x: auto;
// overflow-x: auto;
// padding: 0 16px;
......
......@@ -15,10 +15,20 @@
>
{{ description }}
<ng-container *ngIf="(category$ | async) === 'earnings'">
<a *ngIf="!session.getLoggedInUser().pro" routerLink="/pro">Upgrade to PRO</a>
<a *ngIf="session.getLoggedInUser().pro && !(session.getLoggedInUser().merchant && session.getLoggedInUser().merchant['id'])"
<a *ngIf="!session.getLoggedInUser().pro" routerLink="/pro"
>Upgrade to PRO</a
>
<a
*ngIf="
session.getLoggedInUser().pro &&
!(
session.getLoggedInUser().merchant &&
session.getLoggedInUser().merchant['id']
)
"
routerLink="/wallet/usd"
>Enable payouts</a>.
>Enable payouts</a
>.
</ng-container>
</p>
</div>
......
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