Skip to content

Commit

Permalink
fix(inputtext): fix snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
OlenaKashuba committed Mar 26, 2024
1 parent 40a9c13 commit f827a77
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ exports[`<InputText /> renders the component with error 1`] = `
font-size: 16px;
font-weight: 400;
color: #4A545E;
border: 1px solid #7D8B98;
border: 1px solid #FF4539;
box-shadow: 0 0 4px 0 transparent;
-webkit-transition-property: border,box-shadow;
transition-property: border,box-shadow;
Expand Down Expand Up @@ -340,7 +340,7 @@ exports[`<InputText /> renders the component with error 1`] = `
.c1:disabled {
-webkit-text-fill-color: #7D8B98;
opacity: 1;
border: 1px solid #7D8B98;
border: 1px solid #FF4539;
box-shadow: 0 0 4px 0 transparent;
background-color: #F7F7F7;
cursor: not-allowed;
Expand Down Expand Up @@ -444,7 +444,7 @@ exports[`<InputText /> renders the component with isValid set as true 1`] = `
font-size: 16px;
font-weight: 400;
color: #4A545E;
border: 1px solid #7D8B98;
border: 1px solid #36A156;
box-shadow: 0 0 4px 0 transparent;
-webkit-transition-property: border,box-shadow;
transition-property: border,box-shadow;
Expand Down Expand Up @@ -486,7 +486,7 @@ exports[`<InputText /> renders the component with isValid set as true 1`] = `
.c1:disabled {
-webkit-text-fill-color: #7D8B98;
opacity: 1;
border: 1px solid #7D8B98;
border: 1px solid #36A156;
box-shadow: 0 0 4px 0 transparent;
background-color: #F7F7F7;
cursor: not-allowed;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ exports[`<TextField /> renders the component and isValid set to true 1`] = `
font-size: 16px;
font-weight: 400;
color: #4A545E;
border: 1px solid #7D8B98;
border: 1px solid #36A156;
box-shadow: 0 0 4px 0 transparent;
-webkit-transition-property: border,box-shadow;
transition-property: border,box-shadow;
Expand Down Expand Up @@ -57,7 +57,7 @@ exports[`<TextField /> renders the component and isValid set to true 1`] = `
.c2:disabled {
-webkit-text-fill-color: #7D8B98;
opacity: 1;
border: 1px solid #7D8B98;
border: 1px solid #36A156;
box-shadow: 0 0 4px 0 transparent;
background-color: #F7F7F7;
cursor: not-allowed;
Expand Down Expand Up @@ -101,7 +101,7 @@ exports[`<TextField /> renders the component with error 1`] = `
font-size: 16px;
font-weight: 400;
color: #4A545E;
border: 1px solid #7D8B98;
border: 1px solid #FF4539;
box-shadow: 0 0 4px 0 transparent;
-webkit-transition-property: border,box-shadow;
transition-property: border,box-shadow;
Expand Down Expand Up @@ -143,7 +143,7 @@ exports[`<TextField /> renders the component with error 1`] = `
.c2:disabled {
-webkit-text-fill-color: #7D8B98;
opacity: 1;
border: 1px solid #7D8B98;
border: 1px solid #FF4539;
box-shadow: 0 0 4px 0 transparent;
background-color: #F7F7F7;
cursor: not-allowed;
Expand Down

0 comments on commit f827a77

Please sign in to comment.