Align link icons justified at both ends

This commit is contained in:
KusaReMKN 2024-02-12 14:00:53 +09:00
parent 8ae86b4856
commit 89be7cd390
No known key found for this signature in database
GPG Key ID: B4699718E405562E

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 flex flex-wrap">
<div className="gap-y-8 flex flex-wrap 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() {
</>
)
}