Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
katspaugh committed Jul 31, 2023
1 parent d09887f commit 761c240
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/common/EthHashInfo/index.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ describe('EthHashInfo', () => {

expect(container.querySelector('.icon')).toHaveAttribute(
'style',
`background-image: url(${makeBlockie(MOCK_SAFE_ADDRESS)}); width: 40px; height: 40px;`,
`background-image: url(${makeBlockie(MOCK_SAFE_ADDRESS)}); width: 44px; height: 44px;`,
)
})

Expand Down
3 changes: 2 additions & 1 deletion src/components/common/EthHashInfo/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@
border-radius: 100%;
border: 2px solid var(--color-secondary-light);
color: #000;
background-color: rgba(255, 255, 255, 0.75);
background-color: rgba(255, 255, 255, 0.6);
text-shadow: -1px 0 0 var(--color-secondary-light), 0 -1px 0 var(--color-secondary-light), 1px 0 0 var(--color-secondary-light), 0 1px 0 var(--color-secondary-light);
}

0 comments on commit 761c240

Please sign in to comment.