Spaces:
Build error
Build error
findEthics Claude commited on
Commit ·
ee8caca
1
Parent(s): d567d71
Fix logout button symbol for Android browser compatibility
Browse files- Replace power symbol (⏻) with north-east arrow (↗) for logout button
- Resolves display issue where Android browsers show "x" instead of symbol
- Arrow symbol is more universally supported across platforms
- Maintains tooltip for clarity and accessibility
- Symbol represents "exit" or "logout" concept effectively
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- public/playlist.html +1 -1
public/playlist.html
CHANGED
|
@@ -487,7 +487,7 @@
|
|
| 487 |
</div>
|
| 488 |
<div class="filter-right">
|
| 489 |
<button class="nav-btn" onclick="goBack()" title="Back">◀</button>
|
| 490 |
-
<button class="nav-btn" onclick="logout()" title="Logout">
|
| 491 |
</div>
|
| 492 |
</div>
|
| 493 |
</div>
|
|
|
|
| 487 |
</div>
|
| 488 |
<div class="filter-right">
|
| 489 |
<button class="nav-btn" onclick="goBack()" title="Back">◀</button>
|
| 490 |
+
<button class="nav-btn" onclick="logout()" title="Logout">↗</button>
|
| 491 |
</div>
|
| 492 |
</div>
|
| 493 |
</div>
|