Skip to content

Commit beda920

Browse files
nodes screen adjustments
1 parent 7993ad0 commit beda920

File tree

4 files changed

+4
-23
lines changed

4 files changed

+4
-23
lines changed

public/chain_config.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"version": "",
88
"display_name": "Bitcoin (Patched)",
99
"description": "Bitcoin Core with additional patches",
10+
"released": "yes",
1011
"repo_url": "https://github.com/LayerTwo-Labs/bitcoin",
1112
"directories": {
1213
"base": {
@@ -55,6 +56,7 @@
5556
"version": "",
5657
"display_name": "BIP 300/301 Enforcer",
5758
"description": "Enforcer for BIP 300/301 functionality",
59+
"released": "yes",
5860
"repo_url": "https://github.com/LayerTwo-Labs/mainchain",
5961
"directories": {
6062
"base": {
@@ -70,8 +72,6 @@
7072
"win32": "Drivechain-Launcher-Downloads/enforcer"
7173
},
7274
"download": {
73-
"urls": {
74-
"linux": "https://releases.drivechain.info/bip300301-enforcer-latest-x86_64-unknown-linux-gnu.zip",
7575
"darwin": "https://releases.drivechain.info/bip300301-enforcer-latest-x86_64-apple-darwin.zip",
7676
"win32": "https://releases.drivechain.info/bip300301-enforcer-latest-x86_64-pc-windows-gnu.zip"
7777
},

src/App.css

+1-4
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ body {
7272
align-items: center;
7373
justify-content: flex-start;
7474
color: var(--text-color);
75-
padding-top: 30px;
75+
padding-top: 36px;
7676
}
7777

7878
.App-header {
@@ -261,9 +261,6 @@ body {
261261
box-sizing: border-box;
262262
}
263263

264-
.chain-section {
265-
margin-bottom: 2rem;
266-
}
267264

268265
.chain-heading-row {
269266
display: flex;

src/components/NavBar.module.css

-15
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,6 @@
3333
background-color: rgba(255, 255, 255, 0.1);
3434
}
3535

36-
.navLink.active {
37-
background-color: rgba(255, 255, 255, 0.2);
38-
text-shadow: 0 0 1px currentColor;
39-
}
40-
4136
.iconContainer {
4237
display: flex;
4338
align-items: center;
@@ -63,16 +58,6 @@
6358
background-color: rgba(0, 0, 0, 0.05);
6459
}
6560

66-
:global(.light) .navLink.active {
67-
background-color: rgba(0, 0, 0, 0.1);
68-
color: #000000;
69-
}
70-
7161
:global(.dark) .navLink:hover {
7262
background-color: rgba(255, 255, 255, 0.1);
7363
}
74-
75-
:global(.dark) .navLink.active {
76-
background-color: rgba(255, 255, 255, 0.2);
77-
color: #ffffff;
78-
}

src/components/Nodes.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,6 @@ function Nodes() {
355355

356356
return (
357357
<div className="Nodes">
358-
<h1>Drivechain Launcher</h1>
359358
<div className="chain-list">
360359
<div className="chain-section">
361360
<div style={{ display: 'flex', alignItems: 'center', justifyContent: 'space-between', marginBottom: '10px' }}>
@@ -421,7 +420,7 @@ function Nodes() {
421420
</div>
422421
</div>
423422
<div className="chain-section">
424-
<h2 className="chain-heading">Layer 2</h2>
423+
<h2 className="chain-heading" style={{ marginBottom: '10px' }}>Layer 2</h2>
425424
<div className="l2-chains">
426425
{chains
427426
.filter(chain => chain.chain_type === 2)

0 commit comments

Comments
 (0)