From 52e44dea40a64aa5e44b325b6cedc1edb8a53d55 Mon Sep 17 00:00:00 2001 From: Bartosz Kaszubowski Date: Wed, 2 Sep 2020 17:44:36 +0200 Subject: [PATCH] fix homepage showcase app list graphical issue (#2185) Co-authored-by: R Nabors --- website/static/css/homepage/AppList.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/website/static/css/homepage/AppList.css b/website/static/css/homepage/AppList.css index 99e66cb8268..953421545bf 100644 --- a/website/static/css/homepage/AppList.css +++ b/website/static/css/homepage/AppList.css @@ -8,3 +8,17 @@ .AppList .item { list-style: none; } + +.AppList .item a { + background-color: transparent; + border-bottom: 0; + transition: opacity 250ms ease-out; +} + +.AppList .item a:hover { + opacity: 0.66; +} + +.AppList .item img { + border-radius: 12px; +}