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)
This commit is contained in:
Mikita Wiśniewski 2023-01-03 16:48:38 +07:00
parent dbff40d44b
commit 87c36d4fd3

View file

@ -33,6 +33,10 @@ p {
margin: 5px 0; margin: 5px 0;
} }
h1 {
margin-top: 0;
}
.layout { .layout {
width: 791px; width: 791px;
margin: 0 auto; margin: 0 auto;
@ -1736,11 +1740,6 @@ body.scrolled .toTop:hover {
color: #58462a; color: #58462a;
} }
.knowledgeBaseArticle {
margin-top: -11px;
/* this is very stupid fix but nah */
}
.avatar-list { .avatar-list {
padding: 4px 8px; padding: 4px 8px;
} }