Update icon size

This commit is contained in:
yude 2021-12-11 21:40:26 +09:00
parent b6f427d605
commit 5a0e87d7d4
Signed by: yude
GPG Key ID: EB0FE5D925C4A968
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ const Dropdown = ({ color }) => {
: openDropdownPopover();
}}
>
<FontAwesomeIcon icon={faLanguage} className="w-12 h-9" />
<FontAwesomeIcon icon={faLanguage} className="text-4xl" />
<svg className="-mr-1 ml-2 h-9 w-3" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true">
<path fillRule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clipRule="evenodd" />
</svg>

View File

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