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
891
Issues
891
List
Boards
Labels
Service Desk
Milestones
Merge Requests
49
Merge Requests
49
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
adabbfedb67379ff74010dba6ed6c66336f07dc2...e570d7e758dd681b26c80d94843375470e72d8aa
Source
e570d7e758dd681b26c80d94843375470e72d8aa
Select Git revision
...
Target
adabbfedb67379ff74010dba6ed6c66336f07dc2
Select Git revision
Compare
Commits (2)
(fix): moved standalone non-pro routes inside of route component
· 17eaed2c
Marcelo Rivera
authored
2 hours ago
17eaed2c
(fix): styles for activities in pro feed
· e570d7e7
Marcelo Rivera
authored
45 minutes ago
e570d7e7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
32 deletions
+35
-32
list.component.scss
src/app/modules/pro/channel/list/list.component.scss
+5
-1
pro.module.ts
src/app/modules/pro/pro.module.ts
+30
-31
No files found.
src/app/modules/pro/channel/list/list.component.scss
View file @
e570d7e7
...
...
@@ -85,9 +85,13 @@ m-pro--channel-list {
grid-template-columns
:
100%
;
&
>
li
{
max-
width
:
500px
;
width
:
500px
;
justify-self
:
center
;
@media
screen
and
(
max-width
:
$min-tablet
)
{
width
:
100%
;
}
minds-activity
{
min-width
:
100%
;
}
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/pro/pro.module.ts
View file @
e570d7e7
...
...
@@ -88,42 +88,41 @@ export const STANDALONE_ROUTES = [
path
:
'
forgot-password
'
,
component
:
ForgotPasswordComponent
,
},
{
path
:
'
newsfeed/:guid
'
,
component
:
NewsfeedSingleComponent
,
},
{
path
:
'
media/:guid
'
,
component
:
MediaViewComponent
,
},
{
path
:
'
media/edit/:guid
'
,
component
:
MediaEditComponent
},
{
path
:
'
blog/view/:guid/:title
'
,
component
:
BlogViewInfinite
},
{
path
:
'
blog/view/:guid
'
,
component
:
BlogViewInfinite
},
{
path
:
'
blog/edit/:guid
'
,
component
:
BlogEdit
,
canDeactivate
:
[
CanDeactivateGuardService
],
},
{
path
:
'
blog/:slugid
'
,
component
:
BlogViewInfinite
},
{
path
:
'
:type
'
,
component
:
ProChannelListComponent
,
},
],
},
{
path
:
'
newsfeed/:guid
'
,
component
:
NewsfeedSingleComponent
,
},
{
path
:
'
media/:guid
'
,
component
:
MediaViewComponent
,
},
{
path
:
'
media/edit/:guid
'
,
component
:
MediaEditComponent
},
{
path
:
'
blog/view/:guid/:title
'
,
component
:
BlogViewInfinite
},
{
path
:
'
blog/view/:guid
'
,
component
:
BlogViewInfinite
},
{
path
:
'
blog/edit/:guid
'
,
component
:
BlogEdit
,
canDeactivate
:
[
CanDeactivateGuardService
],
},
{
path
:
'
blog/:slugid
'
,
component
:
BlogViewInfinite
},
}
];
@
NgModule
({
...
...
This diff is collapsed.
Click to expand it.