From 0744fdfb8db8b7ac1c618e3c3de70e20bb09f319 Mon Sep 17 00:00:00 2001 From: "Timothy Z." Date: Mon, 14 Apr 2025 16:16:02 +0300 Subject: [PATCH] refactor(Intro): new button design --- src/routes/Intro/styles.less | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/src/routes/Intro/styles.less b/src/routes/Intro/styles.less index 335ab9a5c..31a09d54c 100644 --- a/src/routes/Intro/styles.less +++ b/src/routes/Intro/styles.less @@ -189,11 +189,27 @@ } .apple-button { - background: var(--color-x); + background: var(--primary-foreground-color); + + .icon { + color: var(--primary-background-color); + } + + .label { + color: var(--primary-background-color); + } &:hover, &:focus { - outline: var(--focus-outline-size) solid var(--color-x); + outline: var(--focus-outline-size) solid var(--primary-foreground-color); background-color: transparent; + + .icon { + color: var(--primary-foreground-color); + } + + .label { + color: var(--primary-foreground-color); + } } } }