Skip to content

Commit

Permalink
Refactor VersionCheckChangelog component to update padding and positi…
Browse files Browse the repository at this point in the history
…oning of frame content
  • Loading branch information
Adammatthiesen committed Dec 22, 2024
1 parent f74b9ef commit 6757a2d
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ const { link } = Astro.props;

const frameContainer = document.createElement('div');
frameContainer.style.position = 'absolute';
frameContainer.style.width = '98%';
frameContainer.style.height = '98%';
frameContainer.style.width = '99%';
frameContainer.style.height = '99%';
frameContainer.style.backgroundColor = 'hsl(var(--background-step-1))';
frameContainer.style.display = 'none';
frameContainer.style.justifyContent = 'center';
frameContainer.style.alignItems = 'center';
frameContainer.style.top = '0.5%';
frameContainer.style.left = '0.5%';
frameContainer.style.top = '0';
frameContainer.style.left = '0';
frameContainer.style.zIndex = '1000';
frameContainer.style.borderRadius = '1rem';

Expand Down

0 comments on commit 6757a2d

Please sign in to comment.