File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
src/components/FindWallet Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -163,21 +163,22 @@ const IconContainer = styled.div`
163
163
`
164
164
165
165
const StyledIcon = styled ( Icon ) < { selected : boolean } > `
166
- width: 1.3rem;
167
- height: 1.3rem;
166
+ border-radius: 100%;
167
+ width: 1rem;
168
+ height: 1rem;
168
169
margin: 0 0.25rem;
169
170
fill: ${ ( props ) =>
170
- props . selected === true ? props . theme . colors . white : "rgba(0, 0, 0, 0)" } ;
171
+ props . selected === true ? props . theme . colors . primary : "rgba(0, 0, 0, 0)" } ;
171
172
background: ${ ( props ) =>
172
173
props . selected === true
173
174
? props . theme . colors . primary
174
175
: props . theme . colors . priceCardBackground } ;
175
- border-radius: 4px;
176
- border: 1px solid
176
+ outline: 1.5px solid
177
177
${ ( props ) =>
178
178
props . selected === true
179
179
? props . theme . colors . primary
180
180
: props . theme . colors . text } ;
181
+ outline-offset: 3px;
181
182
`
182
183
183
184
// Types
@@ -533,7 +534,7 @@ const WalletPersonasSidebar = ({
533
534
aria-label = { `${ persona . title } filter` }
534
535
>
535
536
< StyledIcon
536
- name = "check "
537
+ name = "circle "
537
538
selected = { selectedPersona === idx }
538
539
size = "2rem"
539
540
/>
You can’t perform that action at this time.
0 commit comments