From b4594910560e60e81c4daa61499ee8c7a51f4ac7 Mon Sep 17 00:00:00 2001 From: Aymeric Chaumont <aymeric.chaumont@student-cs.fr> Date: Thu, 21 Jul 2022 12:08:13 +0200 Subject: [PATCH] added hover color and transition in header --- frontend/src/styles/Header.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/frontend/src/styles/Header.css b/frontend/src/styles/Header.css index f37a45c..69c8910 100644 --- a/frontend/src/styles/Header.css +++ b/frontend/src/styles/Header.css @@ -10,6 +10,11 @@ #header-home-link { text-decoration: none; color: inherit; + transition: 0.3s; +} + +#header-home-link:hover { + color: #6E83F9; } #header-restaurant-status { @@ -27,10 +32,12 @@ #header-button { height: 2rem; width: 2rem; + transition: 0.3s; } #header-button:hover { cursor: pointer; + color: #6E83F9; } @media only screen and (max-width: 600px) { -- GitLab