Skip to content

Commit

Permalink
Feat(web): Use correct focus shadow in forms
Browse files Browse the repository at this point in the history
  • Loading branch information
crishpeen committed Oct 1, 2024
1 parent 7713e51 commit 74a864b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/web/src/scss/theme/_form-fields.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ $input-border-color-success: var(--#{globals.$prefix}color-form-field-success);
$input-border-color-warning: var(--#{globals.$prefix}color-form-field-warning);
$input-border-color-danger: var(--#{globals.$prefix}color-form-field-danger);
$input-border-color-disabled: var(--#{globals.$prefix}color-disabled-border);
$input-focus-shadow: global-tokens.$focus;
$input-focus-shadow: global-tokens.$focus-ring;
$label-color-default: var(--#{globals.$prefix}color-form-field-label);
$label-color-disabled: var(--#{globals.$prefix}color-disabled-content);
$label-required-typography: global-tokens.$body-small-regular;
Expand Down Expand Up @@ -43,7 +43,7 @@ $box-field-input-color-default: var(--#{globals.$prefix}color-form-field-content
$box-field-input-border-width: global-tokens.$border-width-100;
$box-field-input-border-style: solid;
$box-field-input-border-color-focus: var(--#{globals.$prefix}color-border-focus);
$box-field-input-focus-shadow: global-tokens.$focus;
$box-field-input-focus-shadow: global-tokens.$focus-ring;

$box-field-input-border-radius: global-tokens.$radius-300;
$box-field-input-placeholder-color-default: var(--#{globals.$prefix}color-form-field-placeholder);
Expand Down

0 comments on commit 74a864b

Please sign in to comment.