From 538b36b51d4bbd882da4470914448c4bf67eb704 Mon Sep 17 00:00:00 2001 From: Aymeric Chaumont <aymeric.chaumont@student-cs.fr> Date: Thu, 21 Jul 2022 17:12:50 +0200 Subject: [PATCH] changed color and transition of send button --- frontend/src/styles/Comments.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/src/styles/Comments.css b/frontend/src/styles/Comments.css index 492205d..1d1cb61 100644 --- a/frontend/src/styles/Comments.css +++ b/frontend/src/styles/Comments.css @@ -78,17 +78,18 @@ display: flex; justify-content: center; align-items: center; - background-color: rgb(17, 2, 145); + background-color: #4E5FC4; color: white; height: 2.4rem; width: 2.4rem; border-radius: 0.5rem; padding: 0.2rem; font-size: 1.5rem; + transition: 0.3s; } .comment-input-button:hover { - background-color: rgb(18, 0, 177); + background-color: #182F8C; } .no-comments { -- GitLab