Fix: responsive

This commit is contained in:
Last2014 2025-10-27 16:28:45 +09:00
parent 26bb460c4f
commit e39ea4fc38
2 changed files with 8 additions and 31 deletions

View File

@ -9,7 +9,7 @@ import Link from "@/components/header/Link.astro";
mb-8
top-[1rem]
rounded-[1em]
w-[calc(80vw-2rem)]
w-[calc(90vw-2rem)]
h-[5rem]
sticky
p-[1em]

View File

@ -7,28 +7,16 @@ import contacts from "@/constants/contacts";
---
<Layout>
<div class={`
flex
justify-between
bg-white
shadow-sm
min-w-[420px]
w-[70vw]
rounded
p-5
`}>
<div class="min-w-[400px] w-[70vw] flex p-5">
<img
src={new URL("/last2014.png", Astro.url.origin).toString()}
alt="アバター"
class={`
w-15
h-15
mr-2
!rounded-[100%]
`}
class="w-[60px] h-[60px] mr-2 rounded-full"
/>
<div class="flex flex-grow flex-col">
<span class="text-xl font-bold">Last2014</span>
<span class="text-xl font-bold">
Last2014
</span>
<p class="text-sm">
ウェブ開発一生やってる小学生です。<br />
TypeScriptをメインに色々作っています。
@ -67,12 +55,7 @@ import contacts from "@/constants/contacts";
<span class="font-bold text-4xl w-full mb-3">リンク</span>
{links.map((link) => (
<Card
title={link.title}
description={link.description}
img={link.img}
href={link.href}
/>
<Card {...link} />
))}
</div>
@ -87,13 +70,7 @@ import contacts from "@/constants/contacts";
<span class="font-bold text-4xl w-full mb-3">連絡先</span>
{contacts.map((contact) => (
<Card
title={contact.title}
description={contact.description}
img={contact.img}
href={contact.href}
isFullWidth
/>
<Card {...contact} isFullWidth />
))}
</div>
</Layout>