Added back hidden overflow on root container

This commit is contained in:
squidfunk 2020-12-27 11:35:17 +01:00
parent afff64df99
commit b89705bb2e
7 changed files with 8 additions and 7 deletions

View File

@ -5,8 +5,8 @@
"assets/javascripts/vendor.js.map": "assets/javascripts/vendor.08c56446.min.js.map", "assets/javascripts/vendor.js.map": "assets/javascripts/vendor.08c56446.min.js.map",
"assets/javascripts/worker/search.js": "assets/javascripts/worker/search.8c7e0a7e.min.js", "assets/javascripts/worker/search.js": "assets/javascripts/worker/search.8c7e0a7e.min.js",
"assets/javascripts/worker/search.js.map": "assets/javascripts/worker/search.8c7e0a7e.min.js.map", "assets/javascripts/worker/search.js.map": "assets/javascripts/worker/search.8c7e0a7e.min.js.map",
"assets/stylesheets/main.css": "assets/stylesheets/main.b87cccff.min.css", "assets/stylesheets/main.css": "assets/stylesheets/main.3b61ea93.min.css",
"assets/stylesheets/main.css.map": "assets/stylesheets/main.b87cccff.min.css.map", "assets/stylesheets/main.css.map": "assets/stylesheets/main.3b61ea93.min.css.map",
"assets/stylesheets/overrides.css": "assets/stylesheets/overrides.c462ebf7.min.css", "assets/stylesheets/overrides.css": "assets/stylesheets/overrides.c462ebf7.min.css",
"assets/stylesheets/overrides.css.map": "assets/stylesheets/overrides.c462ebf7.min.css.map", "assets/stylesheets/overrides.css.map": "assets/stylesheets/overrides.c462ebf7.min.css.map",
"assets/stylesheets/palette.css": "assets/stylesheets/palette.39b8e14a.min.css", "assets/stylesheets/palette.css": "assets/stylesheets/palette.39b8e14a.min.css",

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -39,7 +39,7 @@
{% endif %} {% endif %}
{% endblock %} {% endblock %}
{% block styles %} {% block styles %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.b87cccff.min.css' | url }}"> <link rel="stylesheet" href="{{ 'assets/stylesheets/main.3b61ea93.min.css' | url }}">
{% if config.theme.palette %} {% if config.theme.palette %}
{% set palette = config.theme.palette %} {% set palette = config.theme.palette %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/palette.39b8e14a.min.css' | url }}"> <link rel="stylesheet" href="{{ 'assets/stylesheets/palette.39b8e14a.min.css' | url }}">

View File

@ -27,6 +27,7 @@
// Stretch container to viewport and set base `font-size` // Stretch container to viewport and set base `font-size`
html { html {
height: 100%; height: 100%;
overflow-x: hidden;
// Hack: normally, we would set the base `font-size` to `62.5%`, so we can // Hack: normally, we would set the base `font-size` to `62.5%`, so we can
// base all calculations on `10px`, but Chromium and Chrome define a minimal // base all calculations on `10px`, but Chromium and Chrome define a minimal
// `font-size` of `12px` if the system language is set to Chinese. For this // `font-size` of `12px` if the system language is set to Chinese. For this