in src/components/chat/duo_chat.stories.js [139:148]
updateDimensions(width, height) {
this.maxWidth = window.innerWidth - WIDTH_OFFSET;
this.maxHeight = window.innerHeight - HEIGHT_OFFSET;
this.width = Math.min(width || this.width, this.maxWidth);
this.height = Math.min(height || this.height, this.maxHeight);
this.top = window.innerHeight - this.height;
this.left = window.innerWidth - this.width;
},