Skip to content

Commit

Permalink
Fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
t-hamano committed May 19, 2023
1 parent 5a2e028 commit 9b38391
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,9 @@ exports[`ToggleGroupControl should render correctly with icons 1`] = `
.emotion-8:focus-within {
border-color: var(--wp-components-color-accent-darker-10, var(--wp-admin-theme-color-darker-10, #2145e6));
box-shadow: 0 0 0 0.5px var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
outline: none;
z-index: 1;
outline: 2px solid transparent;
outline-offset: -2px;
}
.emotion-10 {
Expand All @@ -81,6 +82,8 @@ exports[`ToggleGroupControl should render correctly with icons 1`] = `
-webkit-transition: -webkit-transform 160ms ease;
transition: transform 160ms ease;
z-index: 1;
outline: 2px solid transparent;
outline-offset: -3px;
}
@media ( prefers-reduced-motion: reduce ) {
Expand Down Expand Up @@ -402,8 +405,9 @@ exports[`ToggleGroupControl should render correctly with text options 1`] = `
.emotion-8:focus-within {
border-color: var(--wp-components-color-accent-darker-10, var(--wp-admin-theme-color-darker-10, #2145e6));
box-shadow: 0 0 0 0.5px var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
outline: none;
z-index: 1;
outline: 2px solid transparent;
outline-offset: -2px;
}
.emotion-10 {
Expand Down

0 comments on commit 9b38391

Please sign in to comment.