From c42c64ae2d6aa330e3d856b18c1a85a09dd470da Mon Sep 17 00:00:00 2001 From: kusowl Date: Thu, 19 Feb 2026 16:52:38 +0530 Subject: [PATCH] feature - add user menu in header --- src/app/core/layouts/header/header.html | 13 ++++++++++++- src/styles.css | 9 +++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/src/app/core/layouts/header/header.html b/src/app/core/layouts/header/header.html index 857a69a..1c825ed 100644 --- a/src/app/core/layouts/header/header.html +++ b/src/app/core/layouts/header/header.html @@ -19,7 +19,11 @@
-
+ diff --git a/src/styles.css b/src/styles.css index bcccb95..b41a67b 100644 --- a/src/styles.css +++ b/src/styles.css @@ -50,3 +50,12 @@ body { .input { @apply p-3 border border-gray-300 rounded-xl text-sm w-full; } + +.dropdown { + position-area: span-left bottom; + @apply p-4 mt-2 border border-gray-300 shadow-lg rounded-xl space-y-2 text-gray-800; +} + +.dropdown li { + @apply rounded-lg hover:bg-linear-to-r hover:from-teal-300 hover:to-transparent px-5 py-1; +}