Mobile fix for the TOC, stop it overflow-x'ing the whole page

This commit is contained in:
Joe Rickerby
2021-02-08 18:43:23 +00:00
parent b719392bd5
commit 5b4a3dea50
+2 -1
View File
@@ -690,12 +690,13 @@ optional arguments:
<style> <style>
.options-toc { .options-toc {
display: grid; display: grid;
grid-auto-columns: fit-content(20%) 1fr; grid-template-columns: fit-content(20%) 1fr;
grid-gap: 16px 32px; grid-gap: 16px 32px;
gap: 16px 32px; gap: 16px 32px;
font-size: 90%; font-size: 90%;
margin-bottom: 28px; margin-bottom: 28px;
margin-top: 28px; margin-top: 28px;
overflow-x: auto;
} }
.options-toc .header { .options-toc .header {
grid-column: 1 / 3; grid-column: 1 / 3;