From 8282c1fbf432abc013bda3543202c011ba1a5ab1 Mon Sep 17 00:00:00 2001 From: nessi Date: Tue, 24 Mar 2026 17:54:59 +0100 Subject: [PATCH] refactor: restore original logo image and update color scheme with cyan-violet gradient palette Replace inline SVG brand glyph with NexaVPN_Logo.png image in sidebar. Simplify brand-block to sidebar-brand with logo image styling. Update CSS color variables from green accent (#74e0b8) to cyan (#44e6e7) with violet (#8d5bff) and blue (#4a8cff) accents. Adjust background gradients to use new cyan-violet-blue palette with updated opacity values. Update nav-link hover and active states with cyan-blue gradient background. Modify sidebar background --- admin-web/src/components/Layout.tsx | 20 +-------- admin-web/src/styles/global.css | 65 +++++++++++++++-------------- 2 files changed, 36 insertions(+), 49 deletions(-) diff --git a/admin-web/src/components/Layout.tsx b/admin-web/src/components/Layout.tsx index 0c2f15d..139d52f 100644 --- a/admin-web/src/components/Layout.tsx +++ b/admin-web/src/components/Layout.tsx @@ -21,28 +21,12 @@ type LayoutProps = { const TopbarIcon = topbarIcon; -function BrandGlyph() { - return ( - - ); -} - export function Layout({ onLogout }: LayoutProps) { return (