File tree 6 files changed +30
-29
lines changed
6 files changed +30
-29
lines changed Original file line number Diff line number Diff line change @@ -7,5 +7,5 @@ export const Overlay = styled.div`
7
7
width: 100vw;
8
8
height: 100vh;
9
9
background-color: ${ ( { theme } ) => theme . blackLowOpacity } ;
10
- z-index: 1 ;
10
+ z-index: 30 ;
11
11
` ;
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ const Container = styled.div`
49
49
50
50
${ landscapeStyle (
51
51
( ) => css `
52
- margin-top: 94px ;
52
+ margin-top: 64px ;
53
53
top: 0;
54
54
left: 0;
55
55
right: auto;
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ const Container = styled.div`
38
38
39
39
${ landscapeStyle (
40
40
( ) => css `
41
- margin-top: 94px ;
41
+ margin-top: 64px ;
42
42
width: 260px;
43
43
top: 0;
44
44
right: 0;
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ const StyledA = styled.a`
51
51
display: flex;
52
52
justify-content: center;
53
53
gap: 4px;
54
- margin-top: 94px ;
54
+ margin-top: 64px ;
55
55
margin-bottom: 110px;
56
56
font-size: 16px;
57
57
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ const Container = styled.div`
31
31
32
32
${ landscapeStyle (
33
33
( ) => css `
34
- margin-top : 94 px ;
34
+ margin-top : 64 px ;
35
35
top : 0 ;
36
36
right : 0 ;
37
37
left : auto;
Original file line number Diff line number Diff line change @@ -105,30 +105,31 @@ const NavBar: React.FC = () => {
105
105
return (
106
106
< >
107
107
< Wrapper { ...{ isOpen } } >
108
- < StyledOverlay />
109
- < Container { ...{ isOpen } } >
110
- < LightButton
111
- text = "Kleros Solutions"
112
- onClick = { ( ) => {
113
- toggleIsDappListOpen ( ) ;
114
- } }
115
- Icon = { KlerosSolutionsIcon }
116
- />
117
- < hr />
118
- < Explore />
119
- < hr />
120
- < WalletContainer >
121
- < ConnectWallet />
122
- { isConnected && (
123
- < DisconnectWalletButtonContainer >
124
- < DisconnectWalletButton />
125
- </ DisconnectWalletButtonContainer >
126
- ) }
127
- </ WalletContainer >
128
- < hr />
129
- < Menu { ...{ toggleIsHelpOpen, toggleIsSettingsOpen } } />
130
- < br />
131
- </ Container >
108
+ < StyledOverlay >
109
+ < Container { ...{ isOpen } } >
110
+ < LightButton
111
+ text = "Kleros Solutions"
112
+ onClick = { ( ) => {
113
+ toggleIsDappListOpen ( ) ;
114
+ } }
115
+ Icon = { KlerosSolutionsIcon }
116
+ />
117
+ < hr />
118
+ < Explore />
119
+ < hr />
120
+ < WalletContainer >
121
+ < ConnectWallet />
122
+ { isConnected && (
123
+ < DisconnectWalletButtonContainer >
124
+ < DisconnectWalletButton />
125
+ </ DisconnectWalletButtonContainer >
126
+ ) }
127
+ </ WalletContainer >
128
+ < hr />
129
+ < Menu { ...{ toggleIsHelpOpen, toggleIsSettingsOpen } } />
130
+ < br />
131
+ </ Container >
132
+ </ StyledOverlay >
132
133
</ Wrapper >
133
134
{ ( isDappListOpen || isHelpOpen || isSettingsOpen ) && (
134
135
< PopupContainer >
You can’t perform that action at this time.
0 commit comments