Commit 34c3f332 authored by Phil Hughes's avatar Phil Hughes

Fixed element appearing above sticky tabs

parent 52d22870
...@@ -610,7 +610,7 @@ export default { ...@@ -610,7 +610,7 @@ export default {
page-mode page-mode
> >
<template #default="{ item, index, active }"> <template #default="{ item, index, active }">
<dynamic-scroller-item :item="item" :active="active"> <dynamic-scroller-item :item="item" :active="active" :class="{ active }">
<diff-file <diff-file
:file="item" :file="item"
:reviewed="fileReviews[item.id]" :reviewed="fileReviews[item.id]"
......
...@@ -1190,3 +1190,9 @@ table.code { ...@@ -1190,3 +1190,9 @@ table.code {
margin-top: 0; margin-top: 0;
} }
} }
// Note: Prevents tall files from appearing above sticky tabs
.diffs .vue-recycle-scroller__item-view > div:not(.active) {
position: absolute;
top: 100vh;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment