0
0
mirror of https://github.com/yude-jp/yude.jp synced 2024-12-22 12:10:11 +09:00

Remove outline on ThemeSelector button

This commit is contained in:
yude 2021-06-22 12:29:09 +09:00
parent 50ee7f1bb6
commit 32f41aae32
Signed by: yude
GPG Key ID: EB0FE5D925C4A968

View File

@ -22,7 +22,7 @@ const ThemeSelector = (props) => {
}
};
return (
<button className="my-4 text-2xl" onClick={switchTheme}>
<button className="my-4 text-2xl focus:outline-none" onClick={switchTheme}>
{theme === 'light' ? (
<FontAwesomeIcon icon={faMoon} className="w-10 h-8" />
) : (