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 %} - +