fix: font sizes 21/25/17px, icon labels on send btn, no-wrap fix
- Sync preload script font sizes to match app.js (21/25/17px) - Send button variants now show icons: ↑ Send, 📝 Note, ⚡ Run - Remove fixed width on send-col; add white-space:nowrap + padding so "📝 Note" never wraps regardless of font size Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -14,9 +14,9 @@
|
||||
var t = localStorage.getItem('theme');
|
||||
if (!t) t = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
|
||||
document.documentElement.setAttribute('data-theme', t);
|
||||
var sizes = { normal: '17px', large: '19px', small: '15px' };
|
||||
var sizes = { normal: '21px', large: '25px', small: '17px' };
|
||||
var fs = localStorage.getItem('font-size') || 'normal';
|
||||
document.documentElement.style.fontSize = sizes[fs] || '17px';
|
||||
document.documentElement.style.fontSize = sizes[fs] || '21px';
|
||||
})();
|
||||
</script>
|
||||
<link rel="stylesheet" href="/static/style.css">
|
||||
|
||||
Reference in New Issue
Block a user