Compare commits

...

2 Commits

Author SHA1 Message Date
Denis Koshelev 4f9db3c7c5
Merge da0ea762d0 into c01a572d82 2023-12-05 00:07:44 -07:00
Denis Koshelev da0ea762d0 Add scrolling over TOC 2023-12-03 17:28:23 -05:00
2 changed files with 12 additions and 0 deletions

View File

@ -1137,6 +1137,12 @@ body:has(#menu-controller:checked) {
/* Table of Contents */ /* Table of Contents */
.toc {
max-height: 100vh;
overflow-y: auto;
padding-bottom: 50px;
}
.toc ul, .toc ul,
.toc li { .toc li {
list-style-type: none; list-style-type: none;

View File

@ -59,6 +59,12 @@ body:has(#menu-controller:checked) {
} }
/* Table of Contents */ /* Table of Contents */
.toc {
max-height: 100vh;
overflow-y: auto;
padding-bottom: 50px;
}
.toc ul, .toc ul,
.toc li { .toc li {
@apply list-none px-0 leading-snug; @apply list-none px-0 leading-snug;