Skip to content
Next
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Minds Frontend
Project
Project
Details
Activity
Releases
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
888
Issues
888
List
Boards
Labels
Service Desk
Milestones
Merge Requests
47
Merge Requests
47
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Security & Compliance
Security & Compliance
Dependency List
Packages
Packages
List
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Compare Revisions
2e1c2c087fb49dcb38e52fe57462fc1632e5b80d...7902e50f3a1b98f562166bd6b5077bcba06759d4
Source
7902e50f3a1b98f562166bd6b5077bcba06759d4
Select Git revision
...
Target
2e1c2c087fb49dcb38e52fe57462fc1632e5b80d
Select Git revision
Compare
Commits (3)
(fix): White margin due to bad merge
· 67fba4a6
Emiliano Balbuena
authored
4 hours ago
67fba4a6
(chore): Inline footer items
· 49b89683
Emiliano Balbuena
authored
4 hours ago
49b89683
(fix): Mobile columns on lists
· 7902e50f
Emiliano Balbuena
authored
4 hours ago
7902e50f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
31 additions
and
20 deletions
+31
-20
app.component.html
src/app/app.component.html
+5
-2
footer.component.html
src/app/modules/pro/channel/footer/footer.component.html
+9
-11
footer.component.scss
src/app/modules/pro/channel/footer/footer.component.scss
+8
-6
list.component.scss
src/app/modules/pro/channel/list/list.component.scss
+9
-1
No files found.
src/app/app.component.html
View file @
7902e50f
...
...
@@ -28,7 +28,10 @@
></m-sidebar--markers>
</ng-container>
<m-body
[class.has-v2-navbar]=
"featuresService.has('top-feeds')"
>
<m-body
[class.has-v2-navbar]=
"featuresService.has('top-feeds')"
[class.is-standalone]=
"this.standalone"
>
<m-announcement
[id]=
"'blockchain:sale'"
*ngIf=
"false"
>
<span
class=
"m-blockchain--wallet-address-notice--action"
...
...
@@ -50,7 +53,7 @@
<m--blockchain--transaction-overlay></m--blockchain--transaction-overlay>
<m-modal--tos-updated
*ngIf=
"session.isLoggedIn()"
></m-modal--tos-updated>
<m-juryDutySession
__summons
*ngIf=
"session.isLoggedIn() && !
minds.pro
"
*ngIf=
"session.isLoggedIn() && !
this.standalone
"
></m-juryDutySession
__summons
>
<m-modal-signup-on-scroll></m-modal-signup-on-scroll>
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/pro/channel/footer/footer.component.html
View file @
7902e50f
<div
class=
"m-pro--channel-footer"
>
<span
class=
"m-pro--channel-footer--text"
>
{{ footerText }}
</span>
<div
class=
"m-pro--channel-footer--social-profiles"
>
<span
*ngFor=
"let profile of footerSocialProfiles"
>
<a
*ngIf=
"profile.key && profile.value"
[href]=
"getSocialProfileURL(profile.value)"
rel=
"noopener noreferrer"
target=
"_blank"
><i
[ngClass]=
"[getSocialProfileIconClass(profile)]"
></i
></a>
</span>
</div>
<span
*ngFor=
"let profile of footerSocialProfiles"
>
<a
*ngIf=
"profile.key && profile.value"
[href]=
"getSocialProfileURL(profile.value)"
rel=
"noopener noreferrer"
target=
"_blank"
><i
[ngClass]=
"[getSocialProfileIconClass(profile)]"
></i
></a>
</span>
<a
*ngFor=
"let link of footerLinks"
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/pro/channel/footer/footer.component.scss
View file @
7902e50f
.m-pro--channel-footer
{
display
:
flex
;
align-items
:
center
;
justify-content
:
space-around
;
flex-wrap
:
wrap
;
height
:
100px
;
text-align
:
center
;
margin-bottom
:
24px
;
color
:
var
(
--
m-pro--text-color
);
>
*
{
display
:
inline-block
;
margin
:
8px
16px
;
vertical-align
:
middle
;
}
.m-pro--channel-footer--text
{
text-transform
:
uppercase
;
letter-spacing
:
0
.1em
;
...
...
@@ -14,7 +17,6 @@
a
{
cursor
:
pointer
;
text-decoration
:
none
;
padding
:
0
16px
;
text-transform
:
uppercase
;
letter-spacing
:
0
.1em
;
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/pro/channel/list/list.component.scss
View file @
7902e50f
...
...
@@ -8,7 +8,7 @@ m-pro--channel-list {
m-pro--channel--categories
{
margin
:
16px
0
32px
;
@media
screen
and
(
max-width
:
480px
)
{
@media
screen
and
(
max-width
:
$max-mobile
)
{
margin
:
8px
;
}
}
...
...
@@ -30,6 +30,10 @@ m-pro--channel-list {
margin
:
0
auto
;
justify-content
:
center
;
@media
screen
and
(
max-width
:
$max-mobile
)
{
width
:
100%
;
}
&
>
i
.material-icons
{
font-size
:
100px
;
margin-top
:
100px
;
...
...
@@ -72,6 +76,10 @@ m-pro--channel-list {
list-style
:
none
;
padding
:
0
;
@media
screen
and
(
max-width
:
$max-mobile
)
{
grid-template-columns
:
1fr
;
}
&
.m-proChannelListContent__normalList
{
grid-template-columns
:
1fr
;
...
...
This diff is collapsed.
Click to expand it.