Skip to content

Commit

Permalink
fix(initials): fix initials colors (#1197)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lisa18289 authored Feb 19, 2025
1 parent ed3d1b2 commit e659a46
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
font-weight: var(--initials--font-weight);

*:nth-child(even) {
color: var(--content-color);
}

*:nth-child(odd) {
color: var(--content-accent-color);
}

*:only-child {
color: var(--content-color);
}
}

0 comments on commit e659a46

Please sign in to comment.