hexo-aircloud对toc栏高度的更改
在theme->aircloud->source->js->index.js
中,找到
function reHeightToc(){
if(toc) { // resize toc height
toc.style.height = ( document.documentElement.clientHeight - 400 ) + 'px';
toc.style.overflowY = 'scroll';
}
}
更改值即可
网友评论