Ghost/ghost/admin/app/routes/pages.js
James Morris 8b8fa76cc7 Made all the event tables more consistent
- Adjustments to the icon spacing for all tables
- Adjustments to the font weighting and colour for all event tables
- Changed activity on dashboard to have relative time
- Tweaked padding and margins to bring more consistency
- Also fixed a linting bug

refs https://github.com/TryGhost/Team/issues/1816
2022-08-22 13:32:36 +01:00

16 lines
380 B
JavaScript

import PostsRoute from './posts';
import {inject as service} from '@ember/service';
export default class PagesRoute extends PostsRoute {
@service feature;
modelName = 'page';
buildRouteInfoMetadata() {
return {
titleToken: 'Pages',
mainClasses: this.feature.get('memberAttribution') ? ['gh-main-fullwidth'] : null
};
}
}