From 07819951f2177501784d4c17473a54bfb7d5fdfe Mon Sep 17 00:00:00 2001 From: srisailamkakurala Date: Sat, 21 Dec 2024 20:16:03 +0530 Subject: [PATCH] fixes #1842 --- djangoproject/scss/_style.scss | 10 ++++++++-- djangoproject/templates/base.html | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/djangoproject/scss/_style.scss b/djangoproject/scss/_style.scss index 27bf24b36..03dc8017c 100644 --- a/djangoproject/scss/_style.scss +++ b/djangoproject/scss/_style.scss @@ -3518,12 +3518,13 @@ ul.corporate-members li { gap: 6rem; flex-wrap: wrap; align-content: center; + justify-content: center; } .community-cta-a { display: inline-block; - width: 300px; - height: 300px; + width: 400px; + height: 400px; } .community-cta { @@ -3537,6 +3538,11 @@ ul.corporate-members li { align-items: center; background: var(--community-img-bg); border-radius: 20px; + transition: background-color 0.1s ease; + } + + .community-cta:hover { + background-color: var(--secondary); } .community-cta svg, h3 { diff --git a/djangoproject/templates/base.html b/djangoproject/templates/base.html index 896483b61..7fb26720f 100644 --- a/djangoproject/templates/base.html +++ b/djangoproject/templates/base.html @@ -123,7 +123,7 @@ {% endblock %} - +