Commit bda7eb6c authored by Juan Manuel Solaro's avatar Juan Manuel Solaro

(feat) styling for subscribe button

1 merge request!486WIP: (feat): Minds Pro (development branch) - Release 2
Pipeline #75461447 passed with stages
in 28 minutes and 54 seconds
......@@ -65,7 +65,7 @@
i18n
>Donate</a>
<button class="m-btn" (click)="subscribe($event)" [disabled]="channel.subscribed" [hidden]="currentUser && (channel.guid === currentUser.guid)">
<button class="m-proChannelTopbar_subscribe" (click)="subscribe($event)" [disabled]="channel.subscribed" [hidden]="currentUser && (channel.guid === currentUser.guid)">
{{ !channel.subscribed ? 'Subscribe' : 'Subscribed' }}
<span>
{{ channel.subscribers_count | abbr:0 }}
......
......@@ -136,10 +136,24 @@ m-pro--channel {
}
}
.m-btn {
.m-proChannelTopbar_subscribe {
font-size: 12px;
letter-spacing: 1.25px;
box-shadow: none;
text-transform: uppercase;
padding: 8px 16px;
padding-left: 16px;
color: var(--text-color) !important;
border: 1px solid var(--text-color) !important;
font-family: 'Roboto', Helvetica, sans-serif;
cursor: pointer;
color: var(--text-color);
border: none;
background-color: var(--plain-background-color);
border-radius: 4px;
height: 36px;
span {
margin-left: 4px;
}
}
.m-btn:disabled {
......
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