From 076863b937b83785c0110e9f968a1a4b94492ae9 Mon Sep 17 00:00:00 2001 From: LakshyaPunyani-01 <103628913+LakshyaPunyani-01@users.noreply.github.com> Date: Sun, 3 Nov 2024 15:34:30 +0530 Subject: [PATCH] feat: Added Home button to composite view appllication header for easy navigation to home page (#3059) --- composite-view/web/header.jsp | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/composite-view/web/header.jsp b/composite-view/web/header.jsp index 959f1b589a06..3327c7bca654 100644 --- a/composite-view/web/header.jsp +++ b/composite-view/web/header.jsp @@ -39,11 +39,30 @@ h1 { text-align: center;} h2 { text-align: center;} h3 { text-align: center;} + nav { + text-align: center; + margin-bottom: 20px; + } + .home-link { + padding: 10px 20px; + background-color: #007bff; + color: white; + text-decoration: none; + border-radius: 5px; + } + .home-link:hover { + background-color: #0056b3; + }
+ + <% String todayDateStr = (new Date().toString()); %>