From 575b394cb26c435422e8b8c6e411a703327d8b40 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 16 Feb 2026 23:45:10 +0000 Subject: Remove circle styling from NEKO sidebar toggle button Strip border-radius, box-shadow, background, and backdrop-filter from the sidebar toggle in both v2 and v3 frontends so the logo appears flat. https://claude.ai/code/session_019Z4VJxzY7tcAuNkPAkvry9 --- frontend-vanilla/src/style.css | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'frontend-vanilla/src') diff --git a/frontend-vanilla/src/style.css b/frontend-vanilla/src/style.css index 440bcca..65a57b4 100644 --- a/frontend-vanilla/src/style.css +++ b/frontend-vanilla/src/style.css @@ -226,9 +226,8 @@ html { top: 1rem; left: 1rem; z-index: 1001; - background: var(--sidebar-bg); - border: 1px solid var(--border-color); - border-radius: 50%; + background: none; + border: none; width: 3rem; height: 3rem; font-size: 1.5rem; @@ -236,10 +235,7 @@ html { display: flex; align-items: center; justify-content: center; - box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275); - backdrop-filter: blur(8px); - -webkit-backdrop-filter: blur(8px); } .sidebar-toggle:hover { -- cgit v1.2.3