fix: remove emoji from search button, was breaking monospace typeface

This commit is contained in:
gramps
2026-07-13 15:54:01 -07:00
parent 7c751294c1
commit 4ee2a1613c
+1 -1
View File
@@ -419,7 +419,7 @@ body { font-family: var(--font-body); background: var(--bg-primary); color: var(
<button class="paperclip-btn" id="paperclipBtn" onclick="document.getElementById('fileInput').click()" title="Attach file">&#128206;</button> <button class="paperclip-btn" id="paperclipBtn" onclick="document.getElementById('fileInput').click()" title="Attach file">&#128206;</button>
<textarea id="userInput" placeholder="Type a message... (Ctrl+Enter to Online Search, Enter to Private Search)" rows="1" autofocus></textarea> <textarea id="userInput" placeholder="Type a message... (Ctrl+Enter to Online Search, Enter to Private Search)" rows="1" autofocus></textarea>
<button class="send-btn" id="sendBtn" onclick="sendMessage()">SEND</button> <button class="send-btn" id="sendBtn" onclick="sendMessage()">SEND</button>
<button class="search-btn" id="searchBtn" onclick="sendSearch()" title="Search the web" style="display:none">web &#128269;</button> <button class="search-btn" id="searchBtn" onclick="sendSearch()" title="Search the web" style="display:none">web</button>
</div> </div>
</div> </div>