mirror of
https://github.com/openvk/openvk
synced 2025-07-08 16:53:02 +03:00
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:
parent
dbff40d44b
commit
87c36d4fd3
1 changed files with 4 additions and 5 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue