File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -28,12 +28,15 @@ const Styled = {
28
28
` ,
29
29
BackLink : styled . a `
30
30
text-transform: uppercase;
31
+ color: ${ props => props . theme . colors . offWhite } ;
31
32
font-size: ${ props => props . theme . sizes . xs } ;
32
33
cursor: pointer;
33
34
line-height: 36px;
34
35
35
36
&:hover {
37
+ color: ${ props => props . theme . colors . offWhite } ;
36
38
opacity: 80%;
39
+ text-decoration: none;
37
40
}
38
41
` ,
39
42
} ;
Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ import React from 'react';
2
2
import { Route , Switch } from 'react-router' ;
3
3
import { observer } from 'mobx-react-lite' ;
4
4
import styled from '@emotion/styled' ;
5
+ import { PUBLIC_URL } from '../../config' ;
5
6
import BalanceSettings from './BalanceSettings' ;
6
7
import ExplorerSettings from './ExplorerSettings' ;
7
8
import GeneralSettings from './GeneralSettings' ;
8
9
import UnitSettings from './UnitSettings' ;
9
- import { PUBLIC_URL } from '../../config' ;
10
10
11
11
const Styled = {
12
12
Wrapper : styled . div `
@@ -21,7 +21,7 @@ const SettingsPage: React.FC = () => {
21
21
< Wrapper >
22
22
< Switch >
23
23
< Route path = { `${ PUBLIC_URL } /settings` } exact component = { GeneralSettings } />
24
- < Route path = { `${ PUBLIC_URL } /settings/unit" ` } component = { UnitSettings } />
24
+ < Route path = { `${ PUBLIC_URL } /settings/unit` } component = { UnitSettings } />
25
25
< Route path = { `${ PUBLIC_URL } /settings/balance` } component = { BalanceSettings } />
26
26
< Route path = { `${ PUBLIC_URL } /settings/explorers` } component = { ExplorerSettings } />
27
27
</ Switch >
You can’t perform that action at this time.
0 commit comments