0
0
mirror of https://github.com/yude-jp/yude.jp synced 2025-10-13 19:58:36 +09:00

Fix Font Awesome icon size

This commit is contained in:
2022-01-02 18:18:31 +09:00
parent 16bb6398e4
commit f697eb9b85
3 changed files with 7 additions and 7 deletions

View File

@@ -11,7 +11,7 @@ const FontAwesomeMenu = (props) => {
<div>
<Link href={{ pathname: dest, query: query }}>
<a>
<FontAwesomeIcon icon={icon} className="text-4xl fill-current inline transition duration-200 ease-in-out transform hover:-translate-y-1 hover:scale-110" />
<FontAwesomeIcon icon={icon} size="5x" className="w-9 h-9 fill-current inline transition duration-200 ease-in-out transform hover:-translate-y-1 hover:scale-110" />
</a>
</Link>
</div>