~repos /website

#astro#js#html#css

git clone https://pyrossh.dev/repos/website.git

木 Personal website of pyrossh. Built with astrojs, shiki, vite.



src/components/Wrapper.astro



<div>
<slot />
</div>
<style>
div {
flex: 1;
width: min(70ch, 100% - 4rem); /* To make the website more readable */
margin-right: auto;
margin-left: auto;
padding-left: 1em;
padding-right: 1em;
}
@media (max-width: 720px) {
div {
width: 100%;
}
}
</style>