diff --git a/src/components/topbar/topbar.module.css b/src/components/topbar/topbar.module.css index bfb22c83..1cc28969 100644 --- a/src/components/topbar/topbar.module.css +++ b/src/components/topbar/topbar.module.css @@ -44,7 +44,6 @@ background-color: var(--topbar-mobile-background-color); border-bottom: var(--topbar-mobile-border-bottom); font-size: var(--topbar-mobile-font-size); - color: var(--topbar-mobile-button-text-color); position: fixed; width: 100%; z-index: 3; @@ -54,7 +53,7 @@ } .boardNavMobile .pageJump a, .boardNavMobile .pageJump span { - color: var(--topbar-mobile-button-color); + color: var(--topbar-mobile-button-text-color); text-decoration: var(--button-text-decoration-mobile); } diff --git a/src/views/faq/faq.tsx b/src/views/faq/faq.tsx index fa7c09e2..386fd413 100644 --- a/src/views/faq/faq.tsx +++ b/src/views/faq/faq.tsx @@ -1,8 +1,14 @@ +import { useEffect } from 'react'; import { HashLink } from 'react-router-hash-link'; import { Footer, HomeLogo } from '../home'; import styles from './faq.module.css'; const FAQ = () => { + useEffect(() => { + window.scrollTo(0, 0); + document.title = 'FAQ - plebchan'; + }, []); + return (