免费与菜单提示文字
This commit is contained in:
@@ -103,9 +103,19 @@ export function Header() {
|
||||
<div className="flex-auto flex items-center gap-2">
|
||||
<Button
|
||||
theme="ghost"
|
||||
className="w-9 h-9 ml-4 md:ml-0"
|
||||
className="h-9 ml-4 md:ml-0"
|
||||
onClick={toggleNavbar}>
|
||||
{navbar ? <PanelLeftCloseIcon/> : <PanelLeftOpenIcon/>}
|
||||
{navbar ? (
|
||||
<>
|
||||
<PanelLeftCloseIcon/>
|
||||
<span className="text-foreground/90">关闭菜单</span>
|
||||
</>
|
||||
) : (
|
||||
<>
|
||||
<PanelLeftOpenIcon/>
|
||||
<span className="text-foreground/90">打开菜单</span>
|
||||
</>
|
||||
)}
|
||||
</Button>
|
||||
<span className="max-md:hidden">欢迎来到,蓝狐代理</span>
|
||||
<div className="max-md:hidden h-5 w-px bg-gray-300 mx-2"/>
|
||||
|
||||
Reference in New Issue
Block a user