This commit is contained in:
cookfront 2017-03-22 13:51:10 +08:00
parent deca5b8ba3
commit 548bc6300b
2 changed files with 4 additions and 4 deletions

View File

@ -96,6 +96,7 @@ ul, ol {
> ul li,
> ol li {
color: #666;
font-size: 14px;
line-height: 20px;
margin: 10px 0 10px 20px;
padding-left: 20px;

View File

@ -47,11 +47,10 @@ router.beforeEach((route, redirect, next) => {
});
router.afterEach((route) => {
if (route.page !== '/') {
const sideNavHeight = document.querySelector('.side-nav').clientHeight;
if (route.path !== '/') {
const sideNavBox = document.querySelector('.side-nav');
const pageContentBox = document.querySelector('.page-content');
const pageContentHeight = pageContentBox.clientHeight;
pageContentBox.style.height = Math.max(sideNavHeight, pageContentHeight) + 'px';
pageContentBox.style.height = Math.max(sideNavBox && sideNavBox.clientHeight, pageContentBox && pageContentBox.clientHeight) + 'px';
}
});