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

fix font smoothing to match figma
pull/21833/head
Matthew Hodgson 2019-11-27 01:07:47 +00:00 committed by GitHub
commit f0430d341b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -30,6 +30,11 @@ body {
color: $primary-fg-color;
border: 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 {