mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-14 20:40:17 -05:00
Fix review panel header positioning in Firefox and Safari (#20995)
* Fix review panel header positioning in Firefox and Safari * update scss GitOrigin-RevId: 5427f91f077104639a72f608c8d7572ab7d08a8c
This commit is contained in:
parent
87f714f7c3
commit
db3c69fbcd
2 changed files with 4 additions and 4 deletions
|
@ -134,8 +134,8 @@
|
|||
}
|
||||
|
||||
.review-panel-header {
|
||||
position: fixed;
|
||||
top: var(--review-panel-top);
|
||||
position: sticky;
|
||||
top: 0;
|
||||
width: var(--review-panel-width);
|
||||
height: @review-panel-header-height;
|
||||
display: flex;
|
||||
|
|
|
@ -145,8 +145,8 @@
|
|||
}
|
||||
|
||||
.review-panel-header {
|
||||
position: fixed;
|
||||
top: var(--review-panel-top);
|
||||
position: sticky;
|
||||
top: 0;
|
||||
width: var(--review-panel-width);
|
||||
height: $review-panel-header-height;
|
||||
display: flex;
|
||||
|
|
Loading…
Reference in a new issue