Skip to content

Commit 3570167

Browse files
committed
test
1 parent 4ab3402 commit 3570167

File tree

7 files changed

+5
-11
lines changed

7 files changed

+5
-11
lines changed

packages/neuron-ui/src/components/History/history.module.scss

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
@import '../../styles/mixin.scss';
2-
@import '../../styles/theme.scss';
32
@import '../../styles/animation.scss';
43

54
$history-info-title-color: #999;
@@ -224,7 +223,7 @@ body {
224223
}
225224

226225
.isReceive {
227-
color: $main-color;
226+
color: var(--primary-color);
228227
}
229228

230229
.tokenName {

packages/neuron-ui/src/components/Overview/overview.module.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
@import '../../styles/mixin.scss';
2-
@import '../../styles/theme.scss';
32
@import '../../styles/animation.scss';
43

54
.topContainer {

packages/neuron-ui/src/components/WalletWizard/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ const Welcome = ({ rootPath = '/wizard/', wallets = [], dispatch }: WizardElemen
151151

152152
return (
153153
<div className={styles.welcome}>
154-
<img src="/icon.png" width="58px" className={styles.logo} alt="logo" />
154+
<img src="icon.png" width="58px" className={styles.logo} alt="logo" />
155155
<span className={styles.slogan}>{t('wizard.welcome-to-nervos-neuron')}</span>
156156
<Button
157157
type="default"

packages/neuron-ui/src/widgets/Badge/badge.module.scss

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
@import '../../styles/theme.scss';
2-
31
.badge {
42
position: relative;
53

packages/neuron-ui/src/widgets/CopyZone/copyZone.module.scss

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
@import '../../styles/theme.scss';
2-
31
.container {
42
position: relative;
53
display: inline-block;
@@ -16,7 +14,7 @@
1614
justify-content: center;
1715
align-items: center;
1816
font-weight: 400;
19-
color: $main-color;
17+
color: var(--primary-color);
2018
background-color: rgba(0, 0, 0, 0.8);
2119
backdrop-filter: blur(1px);
2220
user-select: none;

packages/neuron-wallet/src/controllers/app/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ export default class AppController {
133133
),
134134
webPreferences: {
135135
nodeIntegration: true,
136-
devTools: env.isDevMode,
136+
devTools: true, // env.isDevMode,
137137
contextIsolation: false,
138138
preload: path.join(__dirname, './preload.js'),
139139
// disable webSecurity for dev, do not set webSecurity as true, because electron has default set other value when webSecurity is not set by developer

packages/neuron-wallet/src/controllers/app/show-window.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const showWindow = (
2929
autoHideMenuBar: true,
3030
webPreferences: {
3131
nodeIntegration: true,
32-
devTools: env.isDevMode,
32+
devTools: true, // env.isDevMode,
3333
contextIsolation: false,
3434
preload: path.join(__dirname, './preload.js'),
3535
},

0 commit comments

Comments
 (0)