Skip to content

Commit bce18b3

Browse files
jejbrppt
authored andcommitted
html5: fix persistent matrix chat
using visibility: hidden still causes the element to do layout, which squeeze other elements (like timer, polls, etc). Fix this by changing to display: none which doesn't do any layout at all. Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
1 parent 0318551 commit bce18b3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bigbluebutton-html5/imports/ui/components/matrix/component.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const Matrix = ({
5656
<Styled.Matrix
5757
data-test="matrix"
5858
isChrome={isChrome}
59-
style={{ visibility: isVisible ? 'visible' : 'hidden', }}
59+
style={ isVisible ? {} : {display: 'none'}}
6060
>
6161
<Header
6262
leftButtonProps={{

0 commit comments

Comments
 (0)