Skip to content
This repository was archived by the owner on Jan 22, 2026. It is now read-only.

Commit d9469ef

Browse files
committed
resolved merge conflicts
2 parents fa1d4cf + d84903a commit d9469ef

6 files changed

Lines changed: 34 additions & 8 deletions

File tree

packages/blockchain-info-components/src/Colors/DarkMode.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ export default {
4848
greyFade800: 'rgba(28,28,28,28.8)',
4949
greyFade200: 'rgba(28,28,28,28.1)',
5050
grey100: '#333333',
51+
grey400: '#747474',
5152
grey600: '#797979',
5253
blue000: '#ECF5FE',
5354
blue100: '#D8EBFD',

packages/blockchain-info-components/src/Colors/Default.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ export default {
141141
greyFade200: 'rgba(5, 24, 61, 0.2)',
142142
grey000: '#F0F2F7',
143143
grey100: '#DFE3EB',
144+
grey400: '#98A1B2',
144145
grey600: '#677185',
145146
grey800: '#353F52',
146147
blue000: '#ECF5FE',

packages/blockchain-wallet-v4-frontend/src/data/auth/sagas.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ export default ({ api, coreSagas }) => {
109109
)).getOrElse(false)
110110
if (userFlowSupported) yield put(actions.modules.profile.signIn())
111111
}
112-
113112
const loginRoutineSaga = function * (mobileLogin, firstLogin) {
114113
try {
115114
// If needed, the user should upgrade its wallet before being able to open the wallet

packages/blockchain-wallet-v4-frontend/src/data/modules/profile/sagas.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ export default ({ api, coreSagas, networks }) => {
9898
try {
9999
yield delay(renewIn)
100100
yield call(setSession, userId, lifetimeToken, email, guid)
101-
yield fork(syncUserWithWallet)
102101
} catch (e) {
103102
yield put(A.setApiTokenFailure(e))
104103
yield spawn(

packages/blockchain-wallet-v4-frontend/src/scenes/Home/index.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const ColumnRight = styled(Column)`
5656
}
5757
`
5858

59-
function Pulse ({ theme }) {
59+
const Pulse = ({ theme }) => {
6060
return keyframes`
6161
0% {
6262
box-shadow: 0 0 0 0 ${theme['deep-blue']};
@@ -82,8 +82,10 @@ const GlobalJoyrideStyles = createGlobalStyle`
8282
width: 16px !important;
8383
margin: 19px 0 0 19px;
8484
}
85+
8586
.__floater__open {
86-
transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out !important
87+
transition: none !important;
88+
filter: none !important;
8789
}
8890
`
8991

packages/blockchain-wallet-v4-frontend/src/scenes/Home/model.js

Lines changed: 28 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,35 @@ import { bindActionCreators } from 'redux'
22
import { connect } from 'react-redux'
33
import React, { useEffect } from 'react'
44
import { FormattedMessage } from 'react-intl'
5-
import styled from 'styled-components'
5+
import styled, { keyframes } from 'styled-components'
66

77
import { Button, Icon, Image, Text } from 'blockchain-info-components'
88
import { actions, model } from 'data'
99

1010
const { GENERAL_EVENTS } = model.analytics
1111

12+
const Scale = () => {
13+
return keyframes`
14+
0% {
15+
opacity: 0;
16+
transform: scale(0);
17+
}
18+
100% {
19+
transform: scale(1);
20+
opacity: 1;
21+
}
22+
`
23+
}
24+
1225
const TooltipBody = styled.div`
1326
position: relative;
1427
width: 100%;
1528
max-width: 256px;
1629
background-color: ${props => props.theme['white']};
1730
border-radius: 8px;
18-
box-shadow: 0 0 15px ${({ theme }) => theme['gray-3']};
31+
box-shadow: 0 4px 32px rgba(5, 24, 61, 0.4);
1932
padding: 32px;
33+
animation: ${Scale} 0.3s ease-in-out;
2034
2135
> span:first-child {
2236
position: absolute;
@@ -58,6 +72,16 @@ const StepContent = styled(Text)`
5872
line-height: 24px;
5973
`
6074

75+
const CloseTourIcon = styled(Icon)`
76+
&:hover {
77+
color: ${({ theme }) => theme['grey600']};
78+
}
79+
80+
&:active {
81+
color: ${({ theme }) => theme['grey800']};
82+
}
83+
`
84+
6185
const TourTooltipComponent = ({
6286
analyticsActions,
6387
index,
@@ -90,8 +114,8 @@ const TourTooltipComponent = ({
90114

91115
return (
92116
<TooltipBody {...tooltipProps}>
93-
<Icon
94-
color='grey-600'
117+
<CloseTourIcon
118+
color='grey400'
95119
name='close'
96120
size='16px'
97121
weight={600}

0 commit comments

Comments
 (0)