From 51a93fdcaf8b6aafddc56901831b28df0381e430 Mon Sep 17 00:00:00 2001 From: Biswakalyan Bhuyan Date: Fri, 2 Aug 2024 14:19:40 +0530 Subject: updated ManageAds --- panel/src/components/Navbar.css | 31 ++++++++++++++++++++++++------- 1 file changed, 24 insertions(+), 7 deletions(-) (limited to 'panel/src/components') diff --git a/panel/src/components/Navbar.css b/panel/src/components/Navbar.css index ee38707..76713fb 100644 --- a/panel/src/components/Navbar.css +++ b/panel/src/components/Navbar.css @@ -1,27 +1,44 @@ .navbar { - background-color: #343a40; - padding: 1rem; + background-color: #2196F3; + padding: 10px 20px; display: flex; justify-content: center; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); } .navbar-list { list-style: none; - padding: 0; - margin: 0; display: flex; + margin: 0; + padding: 0; } .navbar-item { - margin: 0 1rem; + margin: 0 15px; } .navbar-item a { color: white; text-decoration: none; - font-weight: bold; + font-weight: 500; + transition: color 0.3s ease; } .navbar-item a:hover { - text-decoration: underline; + color: #FFEB3B; +} + +@media (max-width: 768px) { + .navbar { + flex-direction: column; + align-items: center; + } + + .navbar-list { + flex-direction: column; + } + + .navbar-item { + margin: 10px 0; + } } -- cgit v1.2.3-59-g8ed1b