Show font size toggle button on mobile

Keep the font toggle (A) visible on mobile while hiding other
breadcrumb action buttons (speech, bookmark).

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-12-03 23:11:57 -05:00
parent 41b40994b7
commit f57047b9e7
+10 -2
View File
@@ -1241,9 +1241,17 @@
margin-top: 1rem;
}
/* Hide breadcrumb action buttons on mobile */
/* Hide most breadcrumb action buttons on mobile, but show font toggle */
.breadcrumb-actions {
display: none !important;
display: flex !important;
}
.breadcrumb-actions .breadcrumb-action-btn {
display: none;
}
.breadcrumb-actions .breadcrumb-action-btn.font-toggle {
display: flex;
}
[data-theme="dark"] .breadcrumb {