diff --git a/src/GZCTF/ClientApp/src/components/AppHeader.tsx b/src/GZCTF/ClientApp/src/components/AppHeader.tsx
index 7191f701..cc67d484 100644
--- a/src/GZCTF/ClientApp/src/components/AppHeader.tsx
+++ b/src/GZCTF/ClientApp/src/components/AppHeader.tsx
@@ -75,7 +75,7 @@ const AppHeader: FC = () => {
{supportedLanguages.map((lang: SupportedLanguages) => (
- setLanguage(lang)}>
+ setLanguage(lang)}>
{LanguageMap[lang] ?? lang}
))}
@@ -140,6 +140,7 @@ const AppHeader: FC = () => {
)
}
+ fw={500}
onClick={() => toggleColorScheme()}
>
{t('common.tab.theme.switch_to', {
diff --git a/src/GZCTF/ClientApp/src/components/AppNavbar.tsx b/src/GZCTF/ClientApp/src/components/AppNavbar.tsx
index d2765cff..9fe0292c 100644
--- a/src/GZCTF/ClientApp/src/components/AppNavbar.tsx
+++ b/src/GZCTF/ClientApp/src/components/AppNavbar.tsx
@@ -70,8 +70,9 @@ const useStyles = createStyles((theme, _, u) => {
},
},
- tooltipBody: {
+ tooltip: {
marginLeft: 20,
+ fontWeight: 500,
[u.dark]: {
backgroundColor: darken(theme.colors[theme.primaryColor][8], 0.45),
@@ -106,7 +107,7 @@ const NavbarLink: FC = (props: NavbarLinkProps) => {
const { t } = useTranslation()
return (
-
+
{
{supportedLanguages.map((lang: SupportedLanguages) => (
- setLanguage(lang)}>
+ setLanguage(lang)}>
{LanguageMap[lang] ?? lang}
))}
@@ -218,7 +219,7 @@ const AppNavbar: FC = () => {
theme:
colorScheme === 'dark' ? t('common.tab.theme.light') : t('common.tab.theme.dark'),
})}
- classNames={{ tooltip: classes.tooltipBody }}
+ classNames={classes}
position="right"
>
toggleColorScheme()} className={classes.link}>
@@ -270,11 +271,7 @@ const AppNavbar: FC = () => {
) : (
-
+