fix: entry hover
This commit is contained in:
parent
270e3bee76
commit
a350991de2
|
|
@ -101,7 +101,7 @@ export const PictureWaterFallItem = memo(function PictureWaterFallItem({
|
|||
<EntryItemWrapper
|
||||
view={FeedViewType.Pictures}
|
||||
entry={entry}
|
||||
itemClassName="group rounded-md overflow-hidden"
|
||||
itemClassName="group rounded-md overflow-hidden hover:bg-transparent"
|
||||
style={{
|
||||
width: itemWidth,
|
||||
}}
|
||||
|
|
|
|||
|
|
@ -146,7 +146,7 @@ export const EntryItemWrapper: FC<
|
|||
<div data-entry-id={entry.entries.id} style={style}>
|
||||
<div
|
||||
className={cn(
|
||||
"group relative",
|
||||
"relative duration-200 hover:bg-theme-item-hover",
|
||||
asRead ? "text-zinc-700 dark:text-neutral-400" : "text-zinc-900 dark:text-neutral-300",
|
||||
views[view as FeedViewType]?.wideMode ? "rounded-md" : "px-2",
|
||||
(isActive || isContextMenuOpen) && "!bg-theme-item-active",
|
||||
|
|
|
|||
Loading…
Reference in New Issue