Use different glow for logo in light mode
All checks were successful
/ build (push) Successful in 9s
All checks were successful
/ build (push) Successful in 9s
This commit is contained in:
parent
a0f7ad1666
commit
434c4335d5
13 changed files with 939 additions and 551 deletions
|
|
@ -143,6 +143,14 @@ $mobile-navigation-height: 4rem;
|
|||
--color-glow-secondary: var(--color-white);
|
||||
--transition-glow: filter 100ms cubic-bezier(0, 2.01, .99, -0.72) 100ms,
|
||||
border-color 100ms cubic-bezier(0, 2.01, .99, -0.72) 100ms;
|
||||
|
||||
.light-only {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.dark-only {
|
||||
display: initial;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin theme_light() {
|
||||
|
|
@ -166,6 +174,14 @@ $mobile-navigation-height: 4rem;
|
|||
--color-glow-secondary: var(--color-krypton-950);
|
||||
--transition-glow: filter 100ms cubic-bezier(0, 2.01, .99, -0.72) 100ms,
|
||||
border-color 100ms cubic-bezier(0, 2.01, .99, -0.72) 100ms;
|
||||
|
||||
.light-only {
|
||||
display: initial;
|
||||
}
|
||||
|
||||
.dark-only {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.dark {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue