Add RTLAMR mode to menu and fix mode card icon visibility

- Add RTLAMR utility meter mode card to the mode selection grid
- Fix icons being nearly invisible by setting color to --text-secondary
- Add explicit 24x24px sizing for mode card SVG icons
- Add cyan highlight on hover for icons

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Smittix
2026-01-20 23:16:52 +00:00
parent 30dfea57b9
commit ef4adfe003
2 changed files with 15 additions and 0 deletions

View File

@@ -331,6 +331,10 @@ body {
box-shadow: 0 4px 20px rgba(0, 212, 255, 0.15);
}
.mode-card:hover .mode-icon {
color: var(--accent-cyan);
}
.mode-card:active {
transform: translateY(0);
}
@@ -338,6 +342,12 @@ body {
.mode-card .mode-icon {
font-size: 1.5rem;
margin-bottom: 6px;
color: var(--text-secondary);
}
.mode-card .mode-icon svg {
width: 24px;
height: 24px;
}
.mode-card .mode-name {