-   Notifications  You must be signed in to change notification settings 
- Fork 454
Feat: set mock wallet address via UI #1062
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
f30249b 071d9f3 b9cfa76 58632a6 c9022d5 eac8a37 ee9c4c6 7824af7 92e0567 aa1a46b c293c3f f57cc68 3a836cc 87b0d25 3c6417a d5bd722 89a6dfa 9db5194 892e62f bb3347f 7242db2 64f734c b1879d0 4c7360e 8fd8b89 e770173 a7bcecc 9e1b442 6229651 a0d9afe 259bc6b eb7a675 0d8b3b4 bad5b5d 3b89196 dc8b726 3addedb c7d3260 7315bac 7b86ef8 b1015d3 c9d5398 a706a30 e7f0d8c 934e149 895cf0f 1541aed df2233f 04b9336 4c2831e 99af72f a4b418a 3bf300e c25eeac 91c0766 4e1e4c2 7c8313f 42de845 f6c63d1 62b2fa2 File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| import { Trans } from '@lingui/macro'; | ||
|  | ||
| import { TextWithTooltip, TextWithTooltipProps } from '../TextWithTooltip'; | ||
|  | ||
| export const WatchOnlyModeTooltip = ({ ...rest }: TextWithTooltipProps) => { | ||
| return ( | ||
| <TextWithTooltip {...rest}> | ||
| <Trans> | ||
| Watch-only mode allows to see address positions in Aave, but you won't be able to | ||
| perform transactions. | ||
| </Trans> | ||
| </TextWithTooltip> | ||
| ); | ||
| }; | 
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
|  | @@ -94,7 +94,7 @@ export function AppHeader() { | |
| top: 0, | ||
| transition: theme.transitions.create('top'), | ||
| zIndex: theme.zIndex.appBar, | ||
| bgcolor: 'background.header', | ||
| bgcolor: '#1B2030', | ||
| There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @MatthewCYLau - Instead of us updating this for this singular spot, I believe we need to update the  @iamanastasia - Do these color updates need to get applied to several areas also? Because updating out theme is the right answer to keep things consistent and easy to scale. I think you'd need to vet what gets affected design-wise with this. | ||
| padding: { | ||
| xs: mobileMenuOpen || walletWidgetOpen ? '8px 20px' : '8px 8px 8px 20px', | ||
| xsm: '8px 20px', | ||
|  | ||
Uh oh!
There was an error while loading. Please reload this page.