Skip to content

Commit

Permalink
Apply font-variant-ligatures:none on input fields too. (#7054)
Browse files Browse the repository at this point in the history
  • Loading branch information
isoos authored Sep 26, 2023
1 parent b874a2f commit 21dddcc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkg/web_css/lib/src/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ body {
margin: 0;
padding: 0;
overflow-wrap: anywhere;
// we don't use font ligatures, and Google Sans fonts would otherwise change text in surprising ways
font-variant-ligatures: none;
font-feature-settings: "liga" 0;
}

body, input, button {
body, input, button, select {
font-family: $font-family-google-sans-text;
-webkit-font-smoothing: antialiased;
// we don't use font ligatures, and Google Sans fonts would otherwise change text in surprising ways
font-variant-ligatures: none;
font-feature-settings: "liga" 0;
}

p {
Expand Down

0 comments on commit 21dddcc

Please sign in to comment.