basic divider lines for tiles

This commit is contained in:
Bruno Windels 2018-11-08 11:06:26 +01:00
parent 399d3c5c24
commit fdd324a943

View file

@ -18,8 +18,6 @@ limitations under the License.
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 1fr 1fr;
grid-column-gap: 10px;
grid-row-gap: 10px;
background-color: red;
}
@ -30,6 +28,11 @@ limitations under the License.
content: "no room in this tile yet";
}
.mx_RoomGridView_tile {
border-right: 1px solid $panel-divider-color;
border-bottom: 1px solid $panel-divider-color;
}
.mx_RoomGridView_tile > .mx_RoomView {
height: 100%;
}