From 0a614808f2427cdaf297bce42f7aa61cd6f68057 Mon Sep 17 00:00:00 2001 From: Flancian <0@flancia.org> Date: Sun, 27 Dec 2020 20:57:13 +0100 Subject: [PATCH] Fix horizontal scrollbar. --- app/static/css/screen-dark.css | 2 +- app/static/css/screen-light.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/static/css/screen-dark.css b/app/static/css/screen-dark.css index ae26d90..279a2f1 100644 --- a/app/static/css/screen-dark.css +++ b/app/static/css/screen-dark.css @@ -18,7 +18,7 @@ @import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans&display=swap'); html { font-family: 'Noto Sans', sans-serif} -body { background: #101010; color: #bfbfbf} +body { background: #101010; color: #bfbfbf; overflow-x: hidden;} a { color: #9fc6e0; } h1, h2 { color: #bfbfbf; } h1, h2 { font-family: 'Merriweather Sans'; margin-top: 0.2em; margin-bottom: 0.2em;} diff --git a/app/static/css/screen-light.css b/app/static/css/screen-light.css index 27722b4..a7303e7 100644 --- a/app/static/css/screen-light.css +++ b/app/static/css/screen-light.css @@ -14,7 +14,7 @@ * limitations under the License. */ -body { font-family: sans-serif; background: #eee; } +body { font-family: sans-serif; background: #eee; overflow-x: hidden;} a, h1, h2 { color: #377ba8; } h1, h2 { font-family: 'Georgia', serif; margin: 0; } h1 { border-bottom: 2px solid #eee; }