浮动目录插件Floating TOC阅读模式下展开目录怎么避免与正文重叠?

使用Floating TOC插件过程中,在编辑状态下目录展开后正文会自动往右偏移,但是在阅读模式下,展开目录正文不会自动往右偏移,导致目录会与正文重叠,请问各位大佬该怎么解决这个问题?

阅读模式:


编辑模式:

.view-content{
	display: flex;
}
.floating-toc-div.floating-left{
	width: 0;
	height: 100vh;
	transition: all 0.9s ease;
}
.markdown-source-view{
	width: 100%
}
.floating-toc-div.floating-left:hover{
	width: 200px;
}
1 个赞

多谢多谢,~~~~~