workaround for hidden last line on mobile

pull/255/head
azivner 2019-01-17 21:13:53 +07:00
parent a6fd3fa77c
commit afabaa5fdb
1 changed files with 2 additions and 1 deletions

@ -44,7 +44,8 @@ html, body {
position: relative;
overflow: auto;
flex-direction: column;
height: 100%;
/* for some reason detail overflows a little bit so we subtract few pixels */
height: calc(100% - 25px);
/* large left padding is necessary for ckeditor gutter in detail-only (smartphone) layout */
padding-left: 35px;
}