[feat] hide notice on successful start + tool button bg on dark mode
This commit is contained in:
@@ -30,21 +30,21 @@ export default function PreferenceLayout({
|
||||
<CardIcon
|
||||
type="menu"
|
||||
onClick={() => router.push("/preference/general")}
|
||||
className={cn(pathname === "/preference/general" && "bg-black/5")}
|
||||
className={cn(pathname === "/preference/general" && "bg-black/5 dark:bg-white/5")}
|
||||
>
|
||||
<SettingConfig /> 通用
|
||||
</CardIcon>
|
||||
<CardIcon
|
||||
type="menu"
|
||||
onClick={() => router.push("/preference/path")}
|
||||
className={cn(pathname === "/preference/path" && "bg-black/5")}
|
||||
className={cn(pathname === "/preference/path" && "bg-black/5 dark:bg-white/5")}
|
||||
>
|
||||
<AssemblyLine /> 路径
|
||||
</CardIcon>
|
||||
<CardIcon
|
||||
type="menu"
|
||||
onClick={() => router.push("/preference/replay")}
|
||||
className={cn(pathname === "/preference/replay" && "bg-black/5")}
|
||||
className={cn(pathname === "/preference/replay" && "bg-black/5 dark:bg-white/5")}
|
||||
>
|
||||
<Videocamera /> 录像
|
||||
</CardIcon>
|
||||
|
||||
Reference in New Issue
Block a user