From 00f691cc7e8582fc7d55056ae96e16532a5088b0 Mon Sep 17 00:00:00 2001 From: Marcello Gecchele <10898872+CarbonaraJack@users.noreply.github.com> Date: Sat, 1 Jul 2023 16:17:51 +0900 Subject: [PATCH] Small style consistency fix to list bullet points in darkmode Now the inner circle color matches with the body background color at all times Changes to be committed: modified: styles/components.scss --- styles/components.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles/components.scss b/styles/components.scss index 98fd704b..a6be3f3e 100644 --- a/styles/components.scss +++ b/styles/components.scss @@ -126,7 +126,7 @@ footer .socials { @apply relative pl-7; &::before { - @apply absolute left-1 top-2.5 h-[9px] w-[9px] rounded-full border-2 border-white bg-primary shadow-[0px_0px_0px_2px] shadow-primary content-['']; + @apply absolute left-1 top-2.5 h-[9px] w-[9px] rounded-full border-2 border-body bg-primary shadow-[0px_0px_0px_2px] shadow-primary content-[''] dark:border-darkmode-body; } } }