diff --git a/src/components/DownloadButton.tsx b/src/components/DownloadButton.tsx
index 26cd4256..a2874c4f 100644
--- a/src/components/DownloadButton.tsx
+++ b/src/components/DownloadButton.tsx
@@ -20,8 +20,6 @@ export default function DownloadButton({
className={clsx(
className,
'text-medium',
- '-mx-0.5 translate-x-0.5',
- 'sm:mx-0 sm:translate-x-0'
)}
icon={}
spinnerColor='dim'
diff --git a/src/components/ShareButton.tsx b/src/components/ShareButton.tsx
index 25875e55..bb9d5d33 100644
--- a/src/components/ShareButton.tsx
+++ b/src/components/ShareButton.tsx
@@ -21,8 +21,6 @@ export default function ShareButton({
className={clsx(
className,
dim ? 'text-dim' : 'text-medium',
- '-mx-0.5 translate-x-0.5',
- 'sm:mx-0 sm:translate-x-0',
)}
icon={}
spinnerColor="dim"
diff --git a/src/photo/PhotoLarge.tsx b/src/photo/PhotoLarge.tsx
index fef27e9f..15fc2c29 100644
--- a/src/photo/PhotoLarge.tsx
+++ b/src/photo/PhotoLarge.tsx
@@ -236,8 +236,11 @@ export default function PhotoLarge({
/>}
>}
- {ALLOW_PUBLIC_DOWNLOADS &&
-
}
- {shouldShare &&
-
}
+
+ {shouldShare &&
+ }
+ {ALLOW_PUBLIC_DOWNLOADS &&
+ }
+
}