From 8544e4deb4f2be44b7987222a0fb00dc34fa3862 Mon Sep 17 00:00:00 2001 From: Alexandre Iooss Date: Thu, 1 Apr 2021 09:23:36 +0200 Subject: [PATCH] Fix overflow on mainpage The signature class was forcing the maximum height making the

element overflowing the page. By removing this constraint, the overflow is now gone. --- static/common.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/common.css b/static/common.css index 9553cbf..0a9c41c 100644 --- a/static/common.css +++ b/static/common.css @@ -11,7 +11,7 @@ h1 { padding-top: 0; border-width: thin; clear: both; - height: 3.125rem; + min-height: 3.125rem; text-align: center; }