Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Frontend
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
348
Merge Requests
56
CI / CD
Security & Compliance
Packages
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Commits
cfe0cb4a
Commit
cfe0cb4a
authored
6 minutes ago
by
Mark Harding
Browse files
Options
Download
(chore): some minor fixes for mobile improvements
parent
46f380ca
epic/SSR
1 merge request
!343
WIP: Epic/ssr
Pipeline
#109180925
running with stages
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
16 deletions
+9
-16
src/app/common/layout/v2-topbar/v2-topbar.component.html
View file @
cfe0cb4a
...
...
@@ -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>
...
...
This diff is collapsed.
src/app/modules/channels/sidebar/sidebar.html
View file @
cfe0cb4a
...
...
@@ -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 m
dl-color-text--blue-grey-300"
*ngIf=
"user.tags &&
user.tags.length &&
!editing"
>
<div
class=
"m-channel-bio-field__tags-container"
...
...
This diff is collapsed.
src/app/modules/channels/sidebar/sidebar.scss
View file @
cfe0cb4a
...
...
@@ -64,3 +64,9 @@
}
}
}
.m-channel-bio-field--tags
{
@media
screen
and
(
max-width
:
$min-tablet
)
{
display
:
none
;
}
}
This diff is collapsed.
src/app/modules/forms/register/register.html
View file @
cfe0cb4a
...
...
@@ -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"
>
...
...
This diff is collapsed.
Please
register
or
sign in
to comment