This repository was archived by the owner on Sep 8, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +24
-22
lines changed Expand file tree Collapse file tree 2 files changed +24
-22
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " simple-staking" ,
3
- "version" : " 0.2.19 " ,
3
+ "version" : " 0.2.20 " ,
4
4
"private" : true ,
5
5
"scripts" : {
6
6
"dev" : " next dev" ,
Original file line number Diff line number Diff line change @@ -21,29 +21,31 @@ export const Header: React.FC<HeaderProps> = ({
21
21
return (
22
22
< nav >
23
23
< div className = "bg-base-300 shadow-sm" >
24
- < div className = "container mx-auto flex w-full items-center justify-between gap-4 p-6 pb-4 md:pb-6" >
25
- < Logo />
26
- < div className = "flex flex-1" >
27
- < div className = "hidden flex-1 xl:flex" >
28
- < TestingInfo />
24
+ < div className = "container mx-auto flex-col" >
25
+ < div className = "w-full flex items-center justify-between gap-4 p-6 pb-4 md:pb-6" >
26
+ < Logo />
27
+ < div className = "flex flex-1" >
28
+ < div className = "hidden flex-1 xl:flex" >
29
+ < TestingInfo />
30
+ </ div >
29
31
</ div >
32
+ < ConnectSmall
33
+ onConnect = { onConnect }
34
+ address = { address }
35
+ btcWalletBalanceSat = { btcWalletBalanceSat }
36
+ onDisconnect = { onDisconnect }
37
+ />
38
+ < ThemeToggle />
39
+ </ div >
40
+ < div
41
+ className = { `container mx-auto flex w-full items-center gap-4 md:hidden md:p-0 ${ address ? "justify-end p-6 pt-0" : "" } ` }
42
+ >
43
+ < ConnectedSmall
44
+ address = { address }
45
+ btcWalletBalanceSat = { btcWalletBalanceSat }
46
+ onDisconnect = { onDisconnect }
47
+ />
30
48
</ div >
31
- < ConnectSmall
32
- onConnect = { onConnect }
33
- address = { address }
34
- btcWalletBalanceSat = { btcWalletBalanceSat }
35
- onDisconnect = { onDisconnect }
36
- />
37
- < ThemeToggle />
38
- </ div >
39
- < div
40
- className = { `${ address && "justify-end p-6 pt-0" } container mx-auto flex w-full items-center gap-4 md:hidden md:p-0` }
41
- >
42
- < ConnectedSmall
43
- address = { address }
44
- btcWalletBalanceSat = { btcWalletBalanceSat }
45
- onDisconnect = { onDisconnect }
46
- />
47
49
</ div >
48
50
</ div >
49
51
< div className = "container mx-auto flex w-full items-center p-6 pb-0 xl:hidden" >
You can’t perform that action at this time.
0 commit comments