Skip to content

Commit

Permalink
Merge pull request #5959 from brave/fix-9385
Browse files Browse the repository at this point in the history
Modifies border radius for crypto widgets. fixes 9385
  • Loading branch information
ryanml authored Jun 26, 2020
2 parents a9df744 + 4164fd8 commit 12a0b38
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const StyledWidget = styled<WidgetVisibilityProps, 'div'>('div')`
min-width: ${p => p.isCrypto ? '284px' : 'initial'};
position: relative;
transition: background 0.5s ease;
border-radius: ${p => p.isCrypto ? 'initial' : '16px'};
border-radius: ${p => p.isCrypto ? '6px' : '16px'};
${StyledWidgetMenuContainer}:hover & {
background: rgba(33, 37, 41, 0.48);
Expand Down

0 comments on commit 12a0b38

Please sign in to comment.