diff --git a/packages/studiocms_dashboard/src/components/FrameButton.astro b/packages/studiocms_dashboard/src/components/FrameButton.astro
index ddae8c4bd..0ba2c5c7d 100644
--- a/packages/studiocms_dashboard/src/components/FrameButton.astro
+++ b/packages/studiocms_dashboard/src/components/FrameButton.astro
@@ -34,17 +34,17 @@ const { link } = Astro.props;
frameContainer.style.borderRadius = '1rem';
const frameButton = document.createElement('button');
- frameButton.innerHTML = '';
+ frameButton.innerHTML = '';
frameButton.style.position = 'absolute';
frameButton.style.top = '1rem';
- frameButton.style.right = '1rem';
+ frameButton.style.right = '2rem';
frameButton.style.backgroundColor = 'transparent';
- frameButton.style.padding = '0.5rem';
frameButton.style.border = 'none';
frameButton.style.cursor = 'pointer';
frameButton.style.borderRadius = '0.5rem';
- frameButton.style.height = '2.5rem';
- frameButton.style.width = '2.5rem';
+ frameButton.style.height = '1.5rem';
+ frameButton.style.padding = '0';
+ frameButton.style.width = '1.5rem';
frameButton.style.display = 'flex';
frameButton.style.justifyContent = 'center';
frameButton.style.alignItems = 'center';