fix tiny jump when timeline starts filling viewport

This commit is contained in:
Bruno Windels 2021-09-13 15:39:56 +02:00
parent ecccadb77e
commit 906e5886e1

View file

@ -27,7 +27,10 @@ limitations under the License.
.RoomView_body > .Timeline > ul {
list-style: none;
padding: 0;
/* use small horizontal padding so first/last children margin isn't collapsed
at the edge and a scrollbar shows up when setting margin-top to bottom-align
content when there are not yet enough tiles to fill the viewport */
padding: 1px 0;
margin: 0;
}