Files
blog-astro/src/components/notion/CodePenEmbed.astro
2025-11-28 15:29:39 +08:00

29 lines
655 B
Plaintext

---
export interface Props {
url: URL
}
const { url } = Astro.props
const user = url.pathname.split('/')[1]
const id = url.pathname.split('/')[3]
---
<p
class="codepen"
data-slug-hash={id.toString()}
data-user={user.toString()}
style="box-sizing: border-box; display: flex; align-items: center; justify-content: center; border: 2px solid; margin: 1em 0; padding: 1em;"
>
</p>
<script async src="https://cpwebassets.codepen.io/assets/embed/ei.js"></script>
<style is:global>
.cp_embed_wrapper {
width: 100%;
aspect-ratio: 1.6 / 1;
background-color: #fff;
}
.cp_embed_wrapper iframe {
height: 100% !important;
}
</style>