Adjust logo and switch help and settings buttons

This commit is contained in:
2025-12-28 15:09:30 +01:00
parent c21576a443
commit 1008fe0eb6
4 changed files with 30 additions and 13 deletions

View File

@@ -420,13 +420,6 @@ function App() {
</button>
</div>
<button
className="icon-button"
onClick={() => setIsSettingsOpen(true)}
title="Settings"
>
<Settings size={24} />
</button>
<button
className="icon-button"
onClick={() => setShowHelp(true)}
@@ -434,6 +427,13 @@ function App() {
>
<HelpCircle size={24} />
</button>
<button
className="icon-button"
onClick={() => setIsSettingsOpen(true)}
title="Settings"
>
<Settings size={24} />
</button>
</div>
</header>
)}