mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-18 14:44:58 +08:00
Consistent popover size
This commit is contained in:
parent
9df4dae975
commit
90b7cb3760
@ -285,12 +285,15 @@ export default class MessageComposer extends React.Component {
|
||||
|
||||
// Stickers
|
||||
if (this.state.showStickers) {
|
||||
const popoverWidth = '300px';
|
||||
const popoverHeight = '300px';
|
||||
const stickerpackWidget = Widgets.getStickerpackWidgets()[0];
|
||||
let stickersContent = <p>Click here to add your first sitckerpack</p>;
|
||||
if (stickerpackWidget && stickerpackWidget.content && stickerpackWidget.content.url) {
|
||||
stickersContent = <div style={{
|
||||
border: 'none',
|
||||
height: '160px',
|
||||
height: popoverHeight,
|
||||
width: popoverWidth,
|
||||
}}>
|
||||
<AppTile
|
||||
id={stickerpackWidget.id}
|
||||
@ -327,10 +330,10 @@ export default class MessageComposer extends React.Component {
|
||||
}}
|
||||
style={{
|
||||
borderRadius: '5px',
|
||||
width: 'initial',
|
||||
padding: 0,
|
||||
overflow: 'hidden',
|
||||
height: '160px',
|
||||
height: popoverHeight,
|
||||
width: popoverWidth,
|
||||
}}
|
||||
children={stickersContent}
|
||||
/>
|
||||
|
Loading…
Reference in New Issue
Block a user