From 5293af6c7f1df9638668382e4897f678c59cc718 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikita=20Wi=C5=9Bniewski?= Date: Sun, 8 Jan 2023 03:04:11 +0700 Subject: [PATCH] Quick-fix for 'Login failed' error box displaying wrongly (fixes #820) (#821) 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 52a14ccf..4f718bbd 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; @@ -1745,11 +1749,6 @@ body.scrolled .toTop:hover { color: #58462a; } -.knowledgeBaseArticle { - margin-top: -11px; - /* this is very stupid fix but nah */ -} - .avatar-list { padding: 4px 8px; }