Fix action bar safe area regression
The action bar was recently moved, but the safe area was not, which left a gap between the event and the action bar, making it quite easy to trigger hover on a different event instead of reaching the action bar. Fixes https://github.com/vector-im/element-web/issues/14953 Regressed by https://github.com/matrix-org/matrix-react-sdk/pull/5056
This commit is contained in:
parent
fbb058a8e3
commit
3ece2dd21d
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ limitations under the License.
|
||||||
width: calc(10px + 48px + 100% + 8px);
|
width: calc(10px + 48px + 100% + 8px);
|
||||||
// safe area + action bar
|
// safe area + action bar
|
||||||
height: calc(20px + 100%);
|
height: calc(20px + 100%);
|
||||||
top: -20px;
|
top: -12px;
|
||||||
left: -58px;
|
left: -58px;
|
||||||
z-index: -1;
|
z-index: -1;
|
||||||
cursor: initial;
|
cursor: initial;
|
||||||
|
|
Loading…
Reference in a new issue