From 86ffa75b0d6831d4ceefd1c159df899b6dd12788 Mon Sep 17 00:00:00 2001 From: Ayo Date: Wed, 9 Nov 2022 22:30:45 +0100 Subject: [PATCH] style: more specific selector; complement var --- src/layouts/Layout.astro | 2 ++ src/pages/index.astro | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 6d4cd0b..9b59f20 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -32,6 +32,8 @@ const { title } = Astro.props; --color-brand-blue-4: #101c40; --color-brand-blue-5: #3964e6; + --color-brand-complement: orange; + --ayo-gradient: linear-gradient(45deg, #3054bf, #416fff); } diff --git a/src/pages/index.astro b/src/pages/index.astro index 6401443..14880ec 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -105,7 +105,8 @@ import Footer from "../components/Footer.astro"; animation: pulse 15s ease-in-out infinite; box-shadow: 0 8px 8px -4px lightblue; } - .highlighted-section a { + + .highlighted-section__content ul a { color: white; font-weight: normal; }