fix overflow-x on mobile

This commit is contained in:
Skwodo 2023-01-21 22:41:01 +01:00
parent 0079184c16
commit ca46086e79
2 changed files with 6 additions and 0 deletions

View File

@ -12,6 +12,10 @@ a > .hljs {
color: var(--links); color: var(--links);
} }
#body-container {
overflow-x: hidden;
}
/* Menu Bar */ /* Menu Bar */
#menu-bar, #menu-bar,

View File

@ -54,6 +54,7 @@
{{/if}} {{/if}}
</head> </head>
<body> <body>
<div id="body-container">
<!-- Provide site root to javascript --> <!-- Provide site root to javascript -->
<script> <script>
var path_to_root = "{{ path_to_root }}"; var path_to_root = "{{ path_to_root }}";
@ -309,5 +310,6 @@
{{/if}} {{/if}}
{{/if}} {{/if}}
</div>
</body> </body>
</html> </html>