mirror of https://github.com/vector-im/riot-web
Fix sticker picker height
Fixes https://github.com/vector-im/element-web/issues/15152pull/21833/head
parent
de8865d844
commit
cd3aa81eed
|
@ -7,12 +7,19 @@
|
||||||
height: 300px;
|
height: 300px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#mx_persistedElement_stickerPicker .mx_AppTileFullWidth {
|
#mx_persistedElement_stickerPicker {
|
||||||
height: unset;
|
.mx_AppTileFullWidth {
|
||||||
box-sizing: border-box;
|
height: unset;
|
||||||
border-left: none;
|
box-sizing: border-box;
|
||||||
border-right: none;
|
border-left: none;
|
||||||
border-bottom: none;
|
border-right: none;
|
||||||
|
border-bottom: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
iframe {
|
||||||
|
// Sticker picker depends on the fixed height previously used for all tiles
|
||||||
|
height: 273px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_Stickers_contentPlaceholder {
|
.mx_Stickers_contentPlaceholder {
|
||||||
|
|
Loading…
Reference in New Issue