update css styles,fix a bug where the page toc cannot be clicked due to mask layer

This commit is contained in:
sunface 2022-03-24 21:08:35 +08:00
parent 6858c7a621
commit b82af03497
2 changed files with 12 additions and 0 deletions

View File

@ -21,6 +21,7 @@
width: 200px;
height: calc(100vh - var(--menu-bar-height) - 0.67em * 4);
overflow: auto;
z-index: 1000;
}
.pagetoc a {
border-left: 1px solid var(--sidebar-bg);
@ -62,4 +63,9 @@
/* 修改滚动条宽度 */
::-webkit-scrollbar {
width: 7px;
}
/* 表格靠左对齐 */
table {
margin-left: 0 !important;
}

View File

@ -21,6 +21,7 @@
width: 200px;
height: calc(100vh - var(--menu-bar-height) - 0.67em * 4);
overflow: auto;
z-index: 1000;
}
.pagetoc a {
border-left: 1px solid var(--sidebar-bg);
@ -62,4 +63,9 @@
/* 修改滚动条宽度 */
::-webkit-scrollbar {
width: 7px;
}
/* 表格靠左对齐 */
table {
margin-left: 0 !important;
}