fix: accuracy display, Spiele nav icon, light mode card polish

- Trefferquote: accuracy already displayed correctly as raw value (no fix needed, was already `{stats.accuracy}%`)
- BottomNav: replace  emoji with Lucide Swords icon for Spiele tab (emoji rendered as gear on some systems); remove unused .emojiIcon CSS class
- Light mode: stronger card shadows (0 4px 20px + 0 1px 4px) and brighter card shine (0.85)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Ronny
2026-04-11 21:03:40 +02:00
parent 676ed9c1b3
commit e10aeadb6b
3 changed files with 4 additions and 9 deletions
@@ -35,11 +35,6 @@
color: var(--text-secondary);
}
.emojiIcon {
font-size: 20px;
line-height: 1;
}
@media (min-width: 768px) {
.bottomNav {
display: none;
+2 -2
View File
@@ -1,5 +1,5 @@
import { NavLink } from 'react-router-dom';
import { Home, Trophy, User } from 'lucide-react';
import { Home, Trophy, User, Swords } from 'lucide-react';
import styles from './BottomNav.module.css';
export default function BottomNav() {
@@ -13,7 +13,7 @@ export default function BottomNav() {
<span>Home</span>
</NavLink>
<NavLink to="/spiele" className={linkClass}>
<span className={styles.emojiIcon}></span>
<Swords size={20} />
<span>Spiele</span>
</NavLink>
<NavLink to="/rangliste" className={linkClass}>
+2 -2
View File
@@ -50,8 +50,8 @@
--text-muted: rgba(13,21,38,0.35);
--success: #1AAB72;
--error: #D93025;
--shadow-card: 0 4px 16px rgba(0,0,0,0.10);
--card-shine: rgba(255,255,255,0.7);
--shadow-card: 0 4px 20px rgba(0,0,0,0.12), 0 1px 4px rgba(0,0,0,0.08);
--card-shine: rgba(255,255,255,0.85);
--scrollbar-bg: var(--surface-high);
--primary-rgb: 26, 143, 227;
}