@@ -193,37 +193,39 @@ export const HeaderDesktop = () => {
193193 < $NavAfter >
194194 { onboardingState === OnboardingState . AccountConnected &&
195195 complianceState === ComplianceStates . FULL_ACCESS && (
196- < >
197- < Button
198- tw = "mr-[0.5em]"
199- shape = { ButtonShape . Pill }
200- size = { ButtonSize . XSmall }
201- action = {
202- ! availableBalance || availableBalance > 0
203- ? ButtonAction . Secondary
204- : ButtonAction . Primary
205- }
206- onClick = { ( ) => {
207- dispatch ( openDialog ( DialogTypes . Deposit2 ( { } ) ) ) ;
208- } }
209- state = { { isDisabled : ! dydxAccounts } }
210- >
211- { stringGetter ( { key : STRING_KEYS . DEPOSIT } ) }
212- </ Button >
213- < VerticalSeparator />
214- </ >
196+ < Button
197+ shape = { ButtonShape . Pill }
198+ size = { ButtonSize . XSmall }
199+ action = {
200+ ! availableBalance || availableBalance > 0
201+ ? ButtonAction . Secondary
202+ : ButtonAction . Primary
203+ }
204+ onClick = { ( ) => {
205+ dispatch ( openDialog ( DialogTypes . Deposit2 ( { } ) ) ) ;
206+ } }
207+ state = { { isDisabled : ! dydxAccounts } }
208+ >
209+ { stringGetter ( { key : STRING_KEYS . DEPOSIT } ) }
210+ </ Button >
215211 ) }
216212
217- < MobileDownloadLinks />
213+ { onboardingState === OnboardingState . AccountConnected ? (
214+ < $IconButton
215+ shape = { ButtonShape . Rectangle }
216+ iconName = { IconName . Mobile }
217+ onClick = { ( ) => dispatch ( openDialog ( DialogTypes . MobileSignIn ( { skipWaiting : true } ) ) ) }
218+ />
219+ ) : (
220+ < MobileDownloadLinks />
221+ ) }
218222
219223 < $IconButton
220224 shape = { ButtonShape . Rectangle }
221225 iconName = { IconName . HelpCircle }
222226 onClick = { ( ) => dispatch ( openDialog ( DialogTypes . Help ( ) ) ) }
223227 />
224228
225- < VerticalSeparator />
226-
227229 < NotificationsMenu
228230 slotTrigger = {
229231 < $IconButton
@@ -233,8 +235,6 @@ export const HeaderDesktop = () => {
233235 }
234236 />
235237
236- < VerticalSeparator />
237-
238238 < AccountMenu />
239239 </ $NavAfter >
240240 </ $Header >
@@ -316,7 +316,7 @@ const $NavAfter = styled.div`
316316 justify-self: end;
317317 padding: 0 0.75rem;
318318
319- gap: 0.5rem ;
319+ gap: 1rem ;
320320
321321 a {
322322 color: var(--color-text-1);
0 commit comments