1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-07 10:46:24 +03:00

Merge pull request #3677 from matrix-org/matthew/font-smoothing

fix font smoothing to match figma
This commit is contained in:
Matthew Hodgson
2019-11-27 01:07:47 +00:00
committed by GitHub

View File

@@ -30,6 +30,11 @@ body {
color: $primary-fg-color; color: $primary-fg-color;
border: 0px; border: 0px;
margin: 0px; margin: 0px;
// needed to match the designs correctly on macOS
// see https://github.com/vector-im/riot-web/issues/11425
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
} }
pre, code { pre, code {