From 5573dfc47db4991de6252b91fb3dcac9304698e4 Mon Sep 17 00:00:00 2001 From: inpharmaticist <49789899+inpharmaticist@users.noreply.github.com> Date: Fri, 27 Mar 2026 20:04:01 -0700 Subject: [PATCH] Update nostr-contact.html fix button --- layouts/shortcodes/nostr-contact.html | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/layouts/shortcodes/nostr-contact.html b/layouts/shortcodes/nostr-contact.html index 5003aca..bfa3a2f 100644 --- a/layouts/shortcodes/nostr-contact.html +++ b/layouts/shortcodes/nostr-contact.html @@ -45,6 +45,29 @@ .dark .nostr-contact-wrapper small { color: #9ca3af; /* Dark mode: lighter grey */ } + .nostr-contact-wrapper button { + background: #111827; + color: white; + padding: 0.75rem 1.5rem; + border-radius: 0.375rem; + font-weight: 600; + width: 100%; + cursor: pointer; + border: none; /* Ensure no default borders */ + } + .nostr-contact-wrapper button:hover { + background: #374151; + } + + /* Dark mode: Invert button to light */ + .dark .nostr-contact-wrapper button { + background: #fff; + color: #000; + } + .dark .nostr-contact-wrapper button:hover { + background: #e5e7eb; + } +