1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-05 18:59:22 +00:00

save height on small screens

There is a lot of white space between each post, that annoys on small screens.

This will minimize the used space if the screen is lower than 700px in height.

Rework of 
This commit is contained in:
Ruben Barkow 2016-01-12 00:02:39 +01:00
parent 9012565eae
commit 37b5905b44

@ -1026,3 +1026,16 @@ and (max-width : 767px) {
} }
} }
@media all
and (max-height: 700px) {
.post-menu-area {
margin-bottom: 0px;
margin-top: -18px;
}
.topic-body {
padding: 5px 11px 2px;
}
}