chins
/* 固定左侧标签栏 */
@media (min-width:992px) {
.sideNav, .sideNav>ul {
width: 190px;
position: sticky;
top: 80px;
}
.App {
overflow-x: visible;
}
/* 版块页不受影响 */
.CategoriesPage.TagsPage .sideNav,
.CategoriesPage.TagsPage .sideNav>ul {
position: unset;
}
/* 标签页不受影响 */
.TagsPage.TagsPage .sideNav,
.TagsPage.TagsPage .sideNav>ul {
position: unset;
}
}