Skip to content

Commit

Permalink
Merge branch 'fix/docs-v2-links' of https://github.com/sei-protocol/s…
Browse files Browse the repository at this point in the history
…ei-docs into fix/docs-v2-links
  • Loading branch information
mj850 committed May 27, 2024
2 parents 4ea7331 + bd32701 commit 56d59c2
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 21 deletions.
11 changes: 6 additions & 5 deletions components/EvmWalletConnect/CustomConnectButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import { ConnectButton } from "@rainbow-me/rainbowkit";
import styled from 'styled-components';

const CustomButton = styled.button`
background: #001B2A; /* Dark color */
border: none;
color: #ECDEDE; /* Light color */
background: black; /* Dark color */
border: white solid 1px;
color: white; /* Light color */
padding: 0.5rem 1rem;
font-size: 1rem;
cursor: pointer;
Expand All @@ -19,8 +19,9 @@ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
font-family: 'Inter', sans-serif;
&:hover {
color: #001B2A; /* Dark color */
background: #ECDEDE; /* Light color */
color: black; /* Dark color */
background: white; /* Light color */
border: black solid 1px;
}
`;

Expand Down
33 changes: 17 additions & 16 deletions styles/custom.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,25 +19,26 @@ font-size: 16px; /* Smaller icon size */
}

.downloadButton {
background: #001B2A; /* Dark color */
border: none;
color: #ECDEDE; /* Light color */
padding: 0.5rem 1rem;
font-size: 1rem;
cursor: pointer;
transition: color 0.3s, background 0.3s;
display: inline-block;
margin-top: 1rem;
margin-right: 0.5rem;
border-radius: 25px; /* Rounded corners */
text-align: center;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
font-family: Inter, sans-serif;
background: black; /* Dark color */
border: white solid 1px;
color: white; /* Light color */
padding: 0.5rem 1rem;
font-size: 1rem;
cursor: pointer;
transition: color 0.3s, background 0.3s;
display: inline-block;
margin-top: 1rem;
margin-right: 0.5rem;
border-radius: 25px; /* Rounded corners */
text-align: center;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
font-family: Inter, sans-serif;
}

.downloadButton:hover {
color: #001B2A; /* Dark color */
background: #ECDEDE; /* Light color */
color: black; /* Dark color */
background: white; /* Light color */
border: black solid 1px;
}

.imageWrapper {
Expand Down

0 comments on commit 56d59c2

Please sign in to comment.