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
1 changed files with 1 additions and 1 deletions

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" />
) : (