Commit cfe0cb4a authored by Mark Harding's avatar Mark Harding

(chore): some minor fixes for mobile improvements

1 merge request!343WIP: Epic/ssr
Pipeline #109180925 running with stages
......@@ -93,7 +93,7 @@
</div>
</div>
<div class="m-v2-topbar__Bottom">
<div class="m-v2-topbar__Bottom" *ngIf="getCurrentUser()">
<ng-container *ngTemplateOutlet="navLinks"></ng-container>
</div>
......
......@@ -110,8 +110,8 @@
<!-- END City / Location -->
<div
class="m-channel-bio-field mdl-color-text--blue-grey-300"
*ngIf="user.tags && !editing"
class="m-channel-bio-field m-channel-bio-field--tags mdl-color-text--blue-grey-300"
*ngIf="user.tags && user.tags.length && !editing"
>
<div
class="m-channel-bio-field__tags-container"
......
......@@ -64,3 +64,9 @@
}
}
}
.m-channel-bio-field--tags {
@media screen and (max-width: $min-tablet) {
display: none;
}
}
......@@ -80,19 +80,6 @@
onfocus="this.removeAttribute('readonly');"
/>
</div>
<div
class="mdl-cell mdl-cell--12-col"
[hidden]="!form.value.password2"
*ngIf="form.value.password"
>
<re-captcha
*ngIf="minds.recaptchaKey"
(captchaResponse)="setCaptcha($event)"
[site_key]="minds.recaptchaKey"
#reCaptcha
></re-captcha>
</div>
</div>
<div class="mdl-card__actions">
......
Please register or to comment