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)
This commit is contained in:
Mikita Wiśniewski 2023-01-08 03:04:11 +07:00 committed by GitHub
parent c67607c3f9
commit 5293af6c7f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}