feat: add link to original sources

This commit is contained in:
rizaldy 2024-02-09 03:14:37 +07:00
parent c4c6255ae7
commit 28f6292740
1 changed files with 11 additions and 1 deletions

View File

@ -36,9 +36,19 @@ const Overlay = ({ overlayContent, closeOverlay }) => {
{isOverlayOpen ? (
<p
onClick={closeOverlay}
className="fixed right-0 bottom-0 md:mx-5 my-5 text-white rounded text-sm text-center w-full z-30"
className="fixed right-0 bottom-0 md:mx-5 my-5 text-white rounded text-sm text-center w-full z-30 md:bottom-10 px-2 leading-relaxed"
>
Click anywhere or press "Escape" to close
<span className="px-2">|</span>
<a
className="underline"
target="_blank"
rel="noreferer noopener"
href={overlayContent?.url}
>
Click here
</a>{" "}
to see the raw media
</p>
) : null}