Skip to content

Commit

Permalink
fix: unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
Lawndlwd committed Dec 13, 2024
1 parent ab9dd44 commit 2f8359e
Showing 1 changed file with 24 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ exports[`KeyValueField > should render with default props & max size 1`] = `
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
gap: 24px;
gap: 1.5rem;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
Expand All @@ -30,7 +30,7 @@ exports[`KeyValueField > should render with default props & max size 1`] = `
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
gap: 0;
gap: 0rem;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
Expand Down Expand Up @@ -61,13 +61,13 @@ exports[`KeyValueField > should render with default props & max size 1`] = `
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: inline-flex;
height: 48px;
padding: 0 16px;
height: 3rem;
padding: 0 1rem;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
gap: 8px;
border-radius: 4px;
gap: 0.5rem;
border-radius: 0.25rem;
box-sizing: border-box;
width: auto;
-webkit-align-items: center;
Expand All @@ -83,11 +83,11 @@ exports[`KeyValueField > should render with default props & max size 1`] = `
white-space: nowrap;
-webkit-text-decoration: none;
text-decoration: none;
font-size: 16px;
font-size: 1rem;
font-family: Inter,Asap,sans-serif;
font-weight: 500;
letter-spacing: 0;
line-height: 24px;
line-height: 1.5rem;
paragraph-spacing: 0;
text-case: none;
background: none;
Expand Down Expand Up @@ -175,7 +175,7 @@ exports[`KeyValueField > should render with default props 1`] = `
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
gap: 24px;
gap: 1.5rem;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
Expand All @@ -198,7 +198,7 @@ exports[`KeyValueField > should render with default props 1`] = `
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
gap: 0;
gap: 0rem;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
Expand Down Expand Up @@ -229,13 +229,13 @@ exports[`KeyValueField > should render with default props 1`] = `
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: inline-flex;
height: 48px;
padding: 0 16px;
height: 3rem;
padding: 0 1rem;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
gap: 8px;
border-radius: 4px;
gap: 0.5rem;
border-radius: 0.25rem;
box-sizing: border-box;
width: auto;
-webkit-align-items: center;
Expand All @@ -251,11 +251,11 @@ exports[`KeyValueField > should render with default props 1`] = `
white-space: nowrap;
-webkit-text-decoration: none;
text-decoration: none;
font-size: 16px;
font-size: 1rem;
font-family: Inter,Asap,sans-serif;
font-weight: 500;
letter-spacing: 0;
line-height: 24px;
line-height: 1.5rem;
paragraph-spacing: 0;
text-case: none;
background: none;
Expand Down Expand Up @@ -343,7 +343,7 @@ exports[`KeyValueField > should render with default props in readonly mode 1`] =
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
gap: 24px;
gap: 1.5rem;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
Expand All @@ -366,7 +366,7 @@ exports[`KeyValueField > should render with default props in readonly mode 1`] =
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
gap: 0;
gap: 0rem;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
Expand Down Expand Up @@ -397,13 +397,13 @@ exports[`KeyValueField > should render with default props in readonly mode 1`] =
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: inline-flex;
height: 48px;
padding: 0 16px;
height: 3rem;
padding: 0 1rem;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
gap: 8px;
border-radius: 4px;
gap: 0.5rem;
border-radius: 0.25rem;
box-sizing: border-box;
width: auto;
-webkit-align-items: center;
Expand All @@ -419,11 +419,11 @@ exports[`KeyValueField > should render with default props in readonly mode 1`] =
white-space: nowrap;
-webkit-text-decoration: none;
text-decoration: none;
font-size: 16px;
font-size: 1rem;
font-family: Inter,Asap,sans-serif;
font-weight: 500;
letter-spacing: 0;
line-height: 24px;
line-height: 1.5rem;
paragraph-spacing: 0;
text-case: none;
background: none;
Expand Down

0 comments on commit 2f8359e

Please sign in to comment.