diff --git a/src/app/note/components/metadata/like.tsx b/src/app/note/components/metadata/like.tsx
index c052e85e..a9ea0881 100644
--- a/src/app/note/components/metadata/like.tsx
+++ b/src/app/note/components/metadata/like.tsx
@@ -44,7 +44,7 @@ export default function NoteLike({ id, pubkey, likes }: { id: string; pubkey: st
return (
);
diff --git a/src/app/note/components/metadata/reply.tsx b/src/app/note/components/metadata/reply.tsx
index bafc362c..0a4f6f93 100644
--- a/src/app/note/components/metadata/reply.tsx
+++ b/src/app/note/components/metadata/reply.tsx
@@ -56,7 +56,7 @@ export default function NoteReply({ id, replies }: { id: string; replies: number
return (
<>
diff --git a/src/app/note/components/metadata/repost.tsx b/src/app/note/components/metadata/repost.tsx
index 7b907d7a..9a65e180 100644
--- a/src/app/note/components/metadata/repost.tsx
+++ b/src/app/note/components/metadata/repost.tsx
@@ -44,7 +44,7 @@ export default function NoteRepost({ id, pubkey, reposts }: { id: string; pubkey
return (
);
diff --git a/src/app/note/components/parent.tsx b/src/app/note/components/parent.tsx
index b8723843..14b95540 100644
--- a/src/app/note/components/parent.tsx
+++ b/src/app/note/components/parent.tsx
@@ -38,21 +38,18 @@ export const NoteParent = memo(function NoteParent({ id }: { id: string }) {
const content = !error && data ? noteParser(data) : null;
return (
-
-
-
- {data ? (
- <>
-
-
-
-
-
- >
- ) : (
-
- )}
-
+
+ {data ? (
+ <>
+
+
+
+
+
+ >
+ ) : (
+
+ )}
);
});
diff --git a/src/app/note/components/preview/image.tsx b/src/app/note/components/preview/image.tsx
index 47204a09..7a03c5fa 100644
--- a/src/app/note/components/preview/image.tsx
+++ b/src/app/note/components/preview/image.tsx
@@ -3,7 +3,7 @@ import { Image } from '@lume/shared/image';
export default function ImagePreview({ urls }: { urls: string[] }) {
return (
-
+
openNote(e)}
- className="relative mb-2 mt-3 rounded-lg border border-zinc-700 bg-zinc-800 p-2 py-3"
- >
-
- {data ? (
- <>
-
-
-
-
- >
- ) : (
-
- )}
-
+ openNote(e)} className="mb-2 mt-3 flex flex-col rounded-lg border border-zinc-800 p-2 py-3">
+ {data ? (
+ <>
+
+
+
+
+ >
+ ) : (
+
+ )}
);
});
diff --git a/src/app/note/components/quoteRepost.tsx b/src/app/note/components/quoteRepost.tsx
index 9250f059..2a03125b 100644
--- a/src/app/note/components/quoteRepost.tsx
+++ b/src/app/note/components/quoteRepost.tsx
@@ -8,12 +8,13 @@ export const NoteQuoteRepost = memo(function NoteQuoteRepost({ event }: { event:
const rootID = getQuoteID(event.tags);
return (
-
-
-
-
+
);
});
diff --git a/src/app/note/components/rootNote.tsx b/src/app/note/components/rootNote.tsx
index c02a39ae..5c39c520 100644
--- a/src/app/note/components/rootNote.tsx
+++ b/src/app/note/components/rootNote.tsx
@@ -61,7 +61,7 @@ export const RootNote = memo(function RootNote({ id, fallback }: { id: string; f
const contentFallback = noteParser(parseFallback);
return (
-
openNote(e)} className="relative z-10 flex flex-col">
+
openNote(e)} className="flex flex-col">
@@ -72,7 +72,7 @@ export const RootNote = memo(function RootNote({ id, fallback }: { id: string; f
}
return (
-
openNote(e)} className="relative z-10 flex flex-col">
+
openNote(e)} className="flex flex-col">
{data ? (
<>
diff --git a/src/shared/appHeader.tsx b/src/shared/appHeader.tsx
index be5d5b87..9ad4187c 100644
--- a/src/shared/appHeader.tsx
+++ b/src/shared/appHeader.tsx
@@ -17,7 +17,7 @@ export default function AppHeader() {
return (