Skip to content

Commit 56d59c2

Browse files
committed
Merge branch 'fix/docs-v2-links' of https://github.com/sei-protocol/sei-docs into fix/docs-v2-links
2 parents 4ea7331 + bd32701 commit 56d59c2

File tree

2 files changed

+23
-21
lines changed

2 files changed

+23
-21
lines changed

components/EvmWalletConnect/CustomConnectButton.tsx

+6-5
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ import { ConnectButton } from "@rainbow-me/rainbowkit";
33
import styled from 'styled-components';
44

55
const CustomButton = styled.button`
6-
background: #001B2A; /* Dark color */
7-
border: none;
8-
color: #ECDEDE; /* Light color */
6+
background: black; /* Dark color */
7+
border: white solid 1px;
8+
color: white; /* Light color */
99
padding: 0.5rem 1rem;
1010
font-size: 1rem;
1111
cursor: pointer;
@@ -19,8 +19,9 @@ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
1919
font-family: 'Inter', sans-serif;
2020
2121
&:hover {
22-
color: #001B2A; /* Dark color */
23-
background: #ECDEDE; /* Light color */
22+
color: black; /* Dark color */
23+
background: white; /* Light color */
24+
border: black solid 1px;
2425
}
2526
`;
2627

styles/custom.module.css

+17-16
Original file line numberDiff line numberDiff line change
@@ -19,25 +19,26 @@ font-size: 16px; /* Smaller icon size */
1919
}
2020

2121
.downloadButton {
22-
background: #001B2A; /* Dark color */
23-
border: none;
24-
color: #ECDEDE; /* Light color */
25-
padding: 0.5rem 1rem;
26-
font-size: 1rem;
27-
cursor: pointer;
28-
transition: color 0.3s, background 0.3s;
29-
display: inline-block;
30-
margin-top: 1rem;
31-
margin-right: 0.5rem;
32-
border-radius: 25px; /* Rounded corners */
33-
text-align: center;
34-
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
35-
font-family: Inter, sans-serif;
22+
background: black; /* Dark color */
23+
border: white solid 1px;
24+
color: white; /* Light color */
25+
padding: 0.5rem 1rem;
26+
font-size: 1rem;
27+
cursor: pointer;
28+
transition: color 0.3s, background 0.3s;
29+
display: inline-block;
30+
margin-top: 1rem;
31+
margin-right: 0.5rem;
32+
border-radius: 25px; /* Rounded corners */
33+
text-align: center;
34+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
35+
font-family: Inter, sans-serif;
3636
}
3737

3838
.downloadButton:hover {
39-
color: #001B2A; /* Dark color */
40-
background: #ECDEDE; /* Light color */
39+
color: black; /* Dark color */
40+
background: white; /* Light color */
41+
border: black solid 1px;
4142
}
4243

4344
.imageWrapper {

0 commit comments

Comments
 (0)