refactor(Intro): new button design

This commit is contained in:
Timothy Z. 2025-04-14 16:16:02 +03:00
parent 922de40134
commit 0744fdfb8d

View file

@ -189,11 +189,27 @@
} }
.apple-button { .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 { &:hover, &:focus {
outline: var(--focus-outline-size) solid var(--color-x); outline: var(--focus-outline-size) solid var(--primary-foreground-color);
background-color: transparent; background-color: transparent;
.icon {
color: var(--primary-foreground-color);
}
.label {
color: var(--primary-foreground-color);
}
} }
} }
} }