Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/web/lib/components/detail/ImageDetailModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ export function ImageDetailModal({
{image && (
<div
data-testid="modal-actions-footer"
className="border-t border-border bg-background/95 backdrop-blur-sm px-4 py-3 pb-[calc(env(safe-area-inset-bottom,0px)+12px)]"
className="absolute bottom-6 left-1/2 z-30 -translate-x-1/2 rounded-full border border-white/10 bg-background/80 px-2 py-1.5 shadow-lg backdrop-blur-xl"
>
<SocialActions
liked={
Expand All @@ -414,7 +414,7 @@ export function ImageDetailModal({
/>
</div>
)}
<div className="absolute top-4 right-4 md:top-auto md:right-auto md:bottom-6 md:left-6 z-20 flex gap-3">
<div className="absolute top-4 right-4 z-20 flex gap-3">
<button
onClick={handleMaximize}
className="flex h-11 w-11 items-center justify-center rounded-full bg-black/80 text-white backdrop-blur-sm transition-transform hover:scale-105 hover:bg-black active:scale-95 dark:bg-white/80 dark:text-black dark:hover:bg-white"
Expand Down
Loading