From 9475b9085736dc483c1623185a9894c186f0ea86 Mon Sep 17 00:00:00 2001 From: Steven Engler Date: Mon, 15 Apr 2024 18:17:35 -0400 Subject: [PATCH] Improved header link formatting The `overflow: hidden` was cutting off the font descenders, and `overflow-x: hidden` doesn't work since it causes the `overflow-y` to change to "auto" which causes vertical scrolling. --- static/css/styles.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/static/css/styles.css b/static/css/styles.css index 3b17859..c61d7b5 100644 --- a/static/css/styles.css +++ b/static/css/styles.css @@ -270,9 +270,10 @@ blockquote { margin-top: 9pt; display: flex; flex-direction: row; + /* Not sure what we can do other than continue the links on the next line. + * It's ugly, but probably better than hiding them altogether. */ flex-wrap: wrap; - overflow: hidden; - -webkit-overflow-scrolling: touch; /* this needs to go here for some reason */ + row-gap: 0.3em; } .links li {