Fix magic line creating an empty space at the top of the pad

pull/1/head
yflory 2018-11-12 11:50:01 +01:00
parent 2a6945cbe5
commit 67f3eb40a9
1 changed files with 6 additions and 0 deletions

View File

@ -24,10 +24,16 @@ body
right: 0;
}
/* Remove margin-top for the first element */
body > *:first-child {
margin-top: 0;
}
/* If the magic line is the first element, remove margin-top for the next one */
body > .non-realtime:first-child + * {
margin-top: 0;
}
.cke_editable
{
font-size: 16px;