Merge pull request #3 from KusaReMKN/main

Align link icons justified at both ends
This commit is contained in:
Sumire Isshiki 2024-02-12 14:27:59 +09:00 committed by GitHub
commit f43a68ad8f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,7 +6,7 @@ export default function Links() {
return (
<>
<div className="rounded-lg w-full">
<div className="gap-x-6 gap-y-8 grid grid-cols-4">
<div className="gap-x-6 gap-y-8 grid grid-cols-4 justify-between">
<div className="w-24 h-16">
<a href="https://x.com/yude_jp">
<FontAwesomeIcon className="w-24 h-11" icon={faXTwitter} />
@ -148,4 +148,4 @@ export default function Links() {
</>
)
}