Skip to content

Commit

Permalink
fix font-weight
Browse files Browse the repository at this point in the history
  • Loading branch information
ryotaro612 committed Feb 26, 2025
1 parent 18c27e9 commit dd39cbe
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions dist/components/text-field/error-message/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
}

>.message {
font-weight: 400;
font-weight: var(--font-weight-normal);
font-size: 14px;
line-height: 21px;
line-height: 21;
color: var(--ui-semantic-text-error);
}

Expand Down
2 changes: 1 addition & 1 deletion dist/components/text-field/label/index.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/components/text-field/label/styles.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
:host {
.label {
font-weight: 700;
font-weight: var(--font-weight-bold);
font-size: 14px;
line-height: 21px;
line-height: 21;

&.none {
display: none;
Expand Down
2 changes: 1 addition & 1 deletion dist/components/text-field/x-large/index.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/components/text-field/x-large/input/index.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/components/text-field/x-large/input/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
border: 1px solid var(--ui-semantic-border-semi-strong);
border-radius: var(--radius-medium);
padding: var(--spacing-10) var(--spacing-30);
font-weight: 400;
font-weight: var(--font-weight-normal);
font-size: 16px;
line-height: 24px;
line-height: 24;

&::placeholder {
color: var(--ui-semantic-text-placeholder);
Expand Down
4 changes: 2 additions & 2 deletions src/components/text-field/error-message/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
}

>.message {
font-weight: 400;
font-weight: var(--font-weight-normal);
font-size: 14px;
line-height: 21px;
line-height: 21;
color: var(--ui-semantic-text-error);
}

Expand Down
4 changes: 2 additions & 2 deletions src/components/text-field/label/styles.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
:host {
.label {
font-weight: 700;
font-weight: var(--font-weight-bold);
font-size: 14px;
line-height: 21px;
line-height: 21;

&.none {
display: none;
Expand Down
4 changes: 2 additions & 2 deletions src/components/text-field/x-large/input/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
border: 1px solid var(--ui-semantic-border-semi-strong);
border-radius: var(--radius-medium);
padding: var(--spacing-10) var(--spacing-30);
font-weight: 400;
font-weight: var(--font-weight-normal);
font-size: 16px;
line-height: 24px;
line-height: 24;

&::placeholder {
color: var(--ui-semantic-text-placeholder);
Expand Down

0 comments on commit dd39cbe

Please sign in to comment.