diff --git a/CHANGELOG.md b/CHANGELOG.md index 88c25d4451..5da7323487 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## [Unreleased] ### Fixes +- Fixed fonts to support zwj gender emojis ([#215](https://github.com/stardust-ui/react/pull/215)) - Correct Teams theme site variables @sergiorv ([#110](https://github.com/stardust-ui/react/pull/110)) - Fixed missing colors in Teams' siteVariables @mnajdova ([#200](https://github.com/stardust-ui/react/pull/200)) - Fixed Teams' siteVariables font sizes @levithomason ([#204](https://github.com/stardust-ui/react/pull/204)) diff --git a/src/themes/teams/siteVariables.ts b/src/themes/teams/siteVariables.ts index 48e03c2257..0cd9598e7c 100644 --- a/src/themes/teams/siteVariables.ts +++ b/src/themes/teams/siteVariables.ts @@ -72,7 +72,8 @@ export const lineHeightExtraSmall = 1.2 // export const bodyPadding = 0 export const bodyMargin = 0 -export const bodyFontFamily = '"Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif' +export const bodyFontFamily = + '"Segoe UI", "Helvetica Neue", "Apple Color Emoji", "Segoe UI Emoji", Helvetica, Arial, sans-serif' export const bodyFontSize = '1.4rem' export const bodyColor = black export const bodyLineHeight = lineHeightBase