From b19bd70e12df861ee8073528e75b409eab0d704c Mon Sep 17 00:00:00 2001 From: Kushagra Gour Date: Sat, 10 Feb 2018 20:13:13 +0530 Subject: [PATCH] style.css: fix the full paint on footer hover --- src/style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/style.css b/src/style.css index 409c306..da7b46f 100644 --- a/src/style.css +++ b/src/style.css @@ -462,11 +462,14 @@ body > #demo-frame { background-repeat: no-repeat; vertical-align: middle; -webkit-filter: grayscale(0.9); + filter: grayscale(0.9); transition: 0.4s ease; opacity: 0.3; + will-change: opacity, filter; } .footer:hover .logo { -webkit-filter: grayscale(0); + filter: grayscale(0); opacity: 1; } .footer__right {