...
 
Commits (2)
......@@ -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%;
}
......
......@@ -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({
......