We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb9089c commit 2ed7e25Copy full SHA for 2ed7e25
ui/src/components/feed/feed-panel.tsx
@@ -39,8 +39,8 @@ export const FeedPanel = () => {
39
>
40
<div
41
class={cx(
42
- 'sticky top-0 z-10 flex flex-col gap-2 bg-white/25 p-4 backdrop-blur-md',
43
- containerScroll.y > 0 && 'shadow',
+ 'sticky top-0 flex flex-col gap-2 bg-white/25 p-4 backdrop-blur-md',
+ containerScroll.y > 0 && 'z-10 shadow',
44
)}
45
46
<div class="flex justify-between">
@@ -75,7 +75,7 @@ export const FeedPanel = () => {
75
</Tabs>
76
</div>
77
78
- <div class="p-4 pt-0">
+ <div class={cx('p-4 pt-0', containerScroll.y > 0 ? 'z-auto' : 'z-10')}>
79
<EntryList containerBounds={containerBounds} />
80
81
</Panel>
0 commit comments