Skip to content

Commit

Permalink
feat: ✨ new ui
Browse files Browse the repository at this point in the history
  • Loading branch information
caorushizi committed Jul 23, 2024
1 parent 6b818c3 commit 7ca3813
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/renderer/src/layout/AppHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,12 @@ export function AppHeader({ className }: Props) {
</div>
</div>
{/* help */}
<div className="flex flex-row items-center pr-3">
<div className="flex flex-row items-center gap-3 pr-3">
{appStore.privacy && (
<div className="text-sm text-gray-600">
<EyeInvisibleOutlined /> 隐私模式
</div>
)}
<div
className="cursor-pointer rounded-full rounded-br-sm bg-white p-1"
onClick={openHelpUrl}
Expand All @@ -49,11 +54,6 @@ export function AppHeader({ className }: Props) {
<span className="text-xs text-[#137BF4]">{t("help")}</span>
</div>
</div>
{appStore.privacy && (
<>
<EyeInvisibleOutlined /> 隐私模式
</>
)}
</div>
</div>
);
Expand Down

0 comments on commit 7ca3813

Please sign in to comment.