Fix border around persisted widgets

The PersistedElement had zero height so the border ended up in the
wrong place. Add a wrapper to fix the height back.

Fixes https://github.com/vector-im/riot-web/issues/7030
Fixes https://github.com/vector-im/riot-web/issues/7029
This commit is contained in:
David Baker 2018-07-18 11:52:57 +01:00
parent 0a432dfb8f
commit f868cd6699
2 changed files with 11 additions and 3 deletions

View file

@ -61,6 +61,10 @@ limitations under the License.
background-color: $dialog-background-bg-color;
}
.mx_AppTile_persistedWrapper {
height: 280px;
}
.mx_AppTile:last-child {
margin-right: 1px;
}