Skip to content

Commit 56e0e49

Browse files
committed
some changes
1 parent 2d3ab25 commit 56e0e49

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

app/components/NavBar.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export default function NavBar() {
6868
<div className="w-1.5 h-1.5 rounded-full mr-1.5 animate-pulse bg-[oklch(0.65_0.25_151)]" />
6969
Connected
7070
</span>
71-
<button onClick={disconnect} className="btn btn-outline btn-sm">
71+
<button onClick={disconnect} className="cursor-pointer btn btn-outline btn-sm">
7272
<Plug className="w-3 h-3 mr-1.5" />
7373
Disconnect
7474
</button>

app/components/RpcConnector.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export default function RpcConnector() {
3939
<div className="min-h-screen bg-background text-foreground flex items-center justify-center p-4">
4040
<div className="max-w-md w-full space-y-8">
4141
<div className="text-center space-y-4">
42-
<div className="w-16 h-16 bg-[oklch(0.65_0.25_151)] rounded-xl flex items-center justify-center mx-auto shadow-lg shadow-[oklch(0.65_0.25_151)]/20">
42+
<div className="w-16 h-16 bg-[oklch(0.65_0.25_151)] rounded-xl flex items-center justify-center mx-auto shadow-md shadow-[oklch(0.65_0.25_151)]/20">
4343
<Blocks className="w-8 h-8 text-white" />
4444
</div>
4545
<h1 className="text-3xl font-bold ">
@@ -69,15 +69,15 @@ export default function RpcConnector() {
6969
handleConnect()
7070
}
7171
}}
72-
className="input input-lg w-full"
72+
className="input input-md w-full"
7373
/>
7474
{error && <p className="text-sm text-destructive">{error}</p>}
7575
</div>
7676

7777
<button
7878
onClick={handleConnect}
7979
disabled={!inputUrl.trim()}
80-
className="btn btn-primary btn-lg w-full shadow-lg shadow-[oklch(0.65_0.25_151)]/20"
80+
className="btn cursor-pointer btn-primary btn-md w-full shadow-md shadow-[oklch(0.65_0.25_151)]/20"
8181
>
8282
<Plug className="w-4 h-4 mr-2" />
8383
Connect to Node

globals.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
--card-foreground: oklch(0.145 0 0);
1111
--popover: oklch(1 0 0);
1212
--popover-foreground: oklch(0.145 0 0);
13-
--primary: oklch(0.205 0 0);
13+
--primary: oklch(0.65 0.25 151);
1414
--primary-foreground: oklch(0.985 0 0);
1515
--secondary: oklch(0.97 0 0);
1616
--secondary-foreground: oklch(0.205 0 0);
@@ -46,7 +46,7 @@
4646
--card-foreground: oklch(0.985 0 0);
4747
--popover: oklch(0.2 0 0);
4848
--popover-foreground: oklch(0.985 0 0);
49-
--primary: oklch(0.985 0 0);
49+
--primary: oklch(0.65 0.25 151);
5050
--primary-foreground: oklch(0.205 0 0);
5151
--secondary: oklch(0.27 0 0);
5252
--secondary-foreground: oklch(0.985 0 0);

0 commit comments

Comments
 (0)