Fix composer expand to be on top of message reactions

This commit is contained in:
Jamie Kyle 2023-09-27 13:35:15 -07:00 committed by GitHub
parent a24bdc8bd3
commit 3b687ee68d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,6 +32,7 @@
margin: 0;
max-width: 100%;
position: relative;
z-index: 0;
}
-webkit-padding-start: 0px;
@ -46,6 +47,9 @@
}
&__composition-area {
position: relative;
z-index: 1;
// We need to use the wrapper because the conversation view calculates the height of all
// things in the composition area. A margin on an inner div won't be included in that
// height calculation.