Skip to content

Commit

Permalink
fix(external-page): feed list overlay style
Browse files Browse the repository at this point in the history
Signed-off-by: Innei <i@innei.in>
  • Loading branch information
Innei committed Sep 3, 2024
1 parent c6a8613 commit 1dcffc6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export function Component() {
target="_blank"
key={entry.id}
>
<ListItemHoverOverlay>
<ListItemHoverOverlay className="rounded">
<Item
entryPreview={{
entries: entry,
Expand Down
3 changes: 3 additions & 0 deletions src/renderer/src/pages/(external)/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { EnvironmentIndicator } from "@renderer/modules/app/EnvironmentIndicator"
import { UserProvider } from "@renderer/providers/user-provider"
import { Outlet } from "react-router-dom"

Expand All @@ -6,6 +7,8 @@ export function Component() {
<>
<UserProvider />
<Outlet />

{!import.meta.env.PROD && <EnvironmentIndicator />}
</>
)
}

0 comments on commit 1dcffc6

Please sign in to comment.