Skip to content

Commit

Permalink
🐛 [Head] Try to fix open graph image
Browse files Browse the repository at this point in the history
  • Loading branch information
beefchimi committed Jul 22, 2024
1 parent 218563b commit a178782
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
3 changes: 1 addition & 2 deletions src/layouts/Page.astro
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ const {id, title = 'Curtis Dulmage | UX Developer'} = Astro.props;
const DESCRIPTION = 'UX development portfolio for Curtis Dulmage';
const PERMALINK = new URL(Astro.url.pathname, Astro.site).href;
// new URL('/assets/dulmage-social.png', Astro.site).href;
const OG_IMAGE = '/assets/dulmage-social.png';
const OG_IMAGE = new URL('/assets/dulmage-social.png', Astro.site).href;
---

<!doctype html>
Expand Down
11 changes: 11 additions & 0 deletions src/styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,17 @@ main {
overflow: hidden;
}

/*
TODO: Experiment with this when Safari has better support.
At the moment, the site in "web app view" does not stretch
the full height of the viewport (likely because of `svh`).
*/
/*
.section:fullscreen {
height: 100dvh;
}
*/

.section-interior {
display: grid;
gap: var(--space-looser);
Expand Down

0 comments on commit a178782

Please sign in to comment.