From 9f91dde7f22c3c34fc477c3de9b0e61da4dc94cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrycja=20Kali=C5=84ska?= Date: Tue, 14 May 2024 11:17:59 +0200 Subject: [PATCH] Add dark mode to button in `Hire us` section --- .../components/HireUsSection/styles.module.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/docs/src/components/HireUsSection/styles.module.css b/docs/src/components/HireUsSection/styles.module.css index dab11800ac3f..336dca579bcb 100644 --- a/docs/src/components/HireUsSection/styles.module.css +++ b/docs/src/components/HireUsSection/styles.module.css @@ -70,3 +70,19 @@ .buttonNavyBorderStyling { border: 1px solid var(--swm-navy-light-100); } + +[data-theme='dark'] .buttonNavyStyling { + background-color: var(--swm-landing-button-purple); +} + +[data-theme='dark'] .buttonNavyBorderStyling { + border: 1px solid var(--swm-landing-button-purple); +} +[data-theme='dark'] .buttonNavyStyling:hover { + background-color: transparent; + color: var(--swm-landing-button-purple); +} + +[data-theme='dark'] .buttonNavyStyling:hover svg { + stroke: var(--swm-landing-button-purple); +}