From 3f488dcc2a72b71ff9a43f232aaeb2e7af31762d Mon Sep 17 00:00:00 2001 From: amonsalv Date: Fri, 23 Aug 2024 14:33:48 -0500 Subject: [PATCH] refactor: Update social icons color and border in Socials.astro The color and border properties of the social icons in the Socials.astro file have been updated. The color has been changed to #424242c5 and the border color has been changed to #424242c5. This change improves the visual consistency and styling of the social icons. --- src/components/sections/Socials.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/sections/Socials.astro b/src/components/sections/Socials.astro index a83c9c6..7f5c895 100644 --- a/src/components/sections/Socials.astro +++ b/src/components/sections/Socials.astro @@ -57,11 +57,11 @@ const SOCIAL_ICONS: Record = { } .container a { - color: white; + color: #424242c5; display: inline-flex; align-items: center; justify-content: center; - border: 1px solid white; + border: 1px solid #424242c5; padding: 4px; height: 50px; width: 50px;