Skip to content

Commit

Permalink
Make font family and font-size consistent. (#309)
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenDufresne authored Aug 28, 2024
1 parent ab8bb10 commit d6f84a7
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions settings/src/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ $alert-blue: #72aee6;

.wp-block-wporg-two-factor-settings {
position: relative;
font-size: 13px;
font-size: 14px;
font-family: 'Inter', sans-serif;

> div.initial-load {
display: flex;
Expand Down Expand Up @@ -48,14 +49,18 @@ $alert-blue: #72aee6;
input[type="number"] {
padding: 6px 10px;
font-size: 14px;
font-family: "Open Sans", sans-serif;
}
}

.components-card__body p:first-child {
margin-top: 0;
}

label,
.components-base-control__help {
font-family: 'Inter', sans-serif;
}

label {
text-transform: initial;
font-size: 14px;
Expand Down Expand Up @@ -87,6 +92,10 @@ $alert-blue: #72aee6;
& + .components-notice.is-error {
margin-top: 24px;
}

> button {
font-size: 14px; /* Overwrite the Gutenberg default. */
}
}

.wporg-2fa__token {
Expand Down

0 comments on commit d6f84a7

Please sign in to comment.