From 87c36d4fd326686722e639ebceb0e361d8ff32f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikita=20Wi=C5=9Bniewski?= Date: Tue, 3 Jan 2023 16:48:38 +0700 Subject: [PATCH] Quick-fix for 'Login failed' error box displaying wrongly (fixes #820) This removes the negative margin-top for .knowledgeBaseArticle and adds a margin-top:0 property for h1 tag (which is used only once IIRC) --- Web/static/css/style.css | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Web/static/css/style.css b/Web/static/css/style.css index 42783603..16a35e5c 100644 --- a/Web/static/css/style.css +++ b/Web/static/css/style.css @@ -33,6 +33,10 @@ p { margin: 5px 0; } +h1 { + margin-top: 0; +} + .layout { width: 791px; margin: 0 auto; @@ -1736,11 +1740,6 @@ body.scrolled .toTop:hover { color: #58462a; } -.knowledgeBaseArticle { - margin-top: -11px; - /* this is very stupid fix but nah */ -} - .avatar-list { padding: 4px 8px; }