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

fix font smoothing to match figma #3677

Merged
merged 1 commit into from
Nov 27, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions res/css/_common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down