From 402eb0b4dfc16f36d44b93e6059e51e01a79529f Mon Sep 17 00:00:00 2001 From: Adam Zapletal Date: Fri, 6 Dec 2024 21:37:51 -0600 Subject: [PATCH] Fix initial position of two icons on overview page The initial `background-position`s of the lock and dashboard icons on the overview page were not hiding them like the other icons. This patch adjusts the initial `background-position` values so that the icons are out of view when the animation starts. --- djangoproject/scss/_style.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/djangoproject/scss/_style.scss b/djangoproject/scss/_style.scss index df11729ed..27bf24b36 100644 --- a/djangoproject/scss/_style.scss +++ b/djangoproject/scss/_style.scss @@ -1752,7 +1752,7 @@ h2+.list-link-soup { } &.icon-lock { - background-position: 144px -206px; + background-position: 148px -206px; &.inview { background-position: -36px -96px; @@ -1760,7 +1760,7 @@ h2+.list-link-soup { } &.icon-dashboard { - background-position: -360px 201px; + background-position: -367px 201px; &.inview { background-position: -270px -9px;