Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Fix font-family definition for emojis (#11170)
Browse files Browse the repository at this point in the history
* Fix font-family definition for emojis

* prettier fix

* Rephrase comment about font family overrides
  • Loading branch information
Germain committed Jul 3, 2023
1 parent 2ea8a03 commit 68b04a8
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions res/css/_common.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,20 @@ limitations under the License.
--dialog-zIndex-standard: calc(var(--dialog-zIndex-standard-background) + 1); /* 4012 */
}

/**
* We need to increase the specificity of the selector to override the
* custom property set by the design tokens package
*/
[class^="cpd-theme"][class^="cpd-theme"] {
/**
* The design tokens package currently does not expose the fallback fonts
* We want to keep on re-using `$font-family` to not break custom themes
* and because we can to use `Twemoji` to display emoji rather than using
* system ones
*/
--cpd-font-family-sans: $font-family;
}

@media only percy {
:root {
--percy-color-avatar: $username-variant2-color;
Expand Down

0 comments on commit 68b04a8

Please sign in to comment.