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 = {
2828 ` ,
2929 BackLink : styled . a `
3030 text-transform: uppercase;
31+ color: ${ props => props . theme . colors . offWhite } ;
3132 font-size: ${ props => props . theme . sizes . xs } ;
3233 cursor: pointer;
3334 line-height: 36px;
3435
3536 &:hover {
37+ color: ${ props => props . theme . colors . offWhite } ;
3638 opacity: 80%;
39+ text-decoration: none;
3740 }
3841 ` ,
3942} ;
Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ import React from 'react';
22import { Route , Switch } from 'react-router' ;
33import { observer } from 'mobx-react-lite' ;
44import styled from '@emotion/styled' ;
5+ import { PUBLIC_URL } from '../../config' ;
56import BalanceSettings from './BalanceSettings' ;
67import ExplorerSettings from './ExplorerSettings' ;
78import GeneralSettings from './GeneralSettings' ;
89import UnitSettings from './UnitSettings' ;
9- import { PUBLIC_URL } from '../../config' ;
1010
1111const Styled = {
1212 Wrapper : styled . div `
@@ -21,7 +21,7 @@ const SettingsPage: React.FC = () => {
2121 < Wrapper >
2222 < Switch >
2323 < 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 } />
2525 < Route path = { `${ PUBLIC_URL } /settings/balance` } component = { BalanceSettings } />
2626 < Route path = { `${ PUBLIC_URL } /settings/explorers` } component = { ExplorerSettings } />
2727 </ Switch >
You can’t perform that action at this time.
0 commit comments