diff --git a/app.js b/app.js index 6cfe5ef..fc87a66 100644 --- a/app.js +++ b/app.js @@ -1929,6 +1929,11 @@ function setupControls() { }); document.getElementById('chat-send').addEventListener('click', () => sendChatMessage()); + // Add MemPalace mining button + document.querySelector('.chat-quick-actions').innerHTML += ` + + `; + // Chat quick actions document.getElementById('chat-quick-actions').addEventListener('click', (e) => { const btn = e.target.closest('.quick-action-btn'); diff --git a/style.css b/style.css index a1fe624..5949d6e 100644 --- a/style.css +++ b/style.css @@ -853,6 +853,12 @@ canvas#nexus-canvas { pointer-events: auto; } +/* Add hover effect for MemPalace mining button */ +.quick-action-btn:hover { + background: var(--color-primary-dim); + color: #fff; +} + .quick-action-btn { background: rgba(74, 240, 192, 0.1); border: 1px solid var(--color-primary-dim);