diff --git a/src/app/globals.css b/src/app/globals.css index 0c71ce7..1170e9e 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -9,7 +9,7 @@ html, body { max-width: 100vw; overflow-x: hidden; - background-color: #14161c; + background-color: #000; color: #fff; } @@ -242,7 +242,6 @@ button[type="submit"] { /* Sections list */ .sections-container { gap: 180px; - background-color: #090e12; padding: 76px 116px; flex: 1; height: 100%; diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 599f1b5..08636ca 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -18,11 +18,7 @@ export default function RootLayout({ return ( -
- {children} -
+
{children}
) diff --git a/src/components/Header.tsx b/src/components/Header.tsx index e46cf31..f30766b 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -16,7 +16,7 @@ const Header = () => { const hexChainId = toHexChainid(chainId) return ( -
+

Demo dapp

diff --git a/src/components/StarknetDapp.tsx b/src/components/StarknetDapp.tsx index b271ac9..3975b1d 100644 --- a/src/components/StarknetDapp.tsx +++ b/src/components/StarknetDapp.tsx @@ -10,6 +10,7 @@ import { AddToken } from "./sections/ERC20/AddToken" import { Network } from "./sections/Network/Network" import { SectionButton } from "./sections/SectionButton" import { Section } from "./sections/types" +import { GithubLogo } from "./icons/GithubLogo" const StarknetDapp = () => { const [section, setSection] = useState
(undefined) @@ -19,7 +20,7 @@ const StarknetDapp = () => {
-
+

your

@@ -33,7 +34,7 @@ const StarknetDapp = () => {
-
+
{ {section === "ERC20" && }
+ +
+ + Github +
+
) } diff --git a/src/components/icons/GithubLogo.tsx b/src/components/icons/GithubLogo.tsx new file mode 100644 index 0000000..df21fff --- /dev/null +++ b/src/components/icons/GithubLogo.tsx @@ -0,0 +1,18 @@ +const GithubLogo = () => ( + + + +) + +export { GithubLogo } diff --git a/src/components/sections/AccountStatus.tsx b/src/components/sections/AccountStatus.tsx index 576e8ab..f4838df 100644 --- a/src/components/sections/AccountStatus.tsx +++ b/src/components/sections/AccountStatus.tsx @@ -21,7 +21,7 @@ const Box: FC = ({ title, value, copy, truncate }) => (
{title} {value || "-"} {value && copy && } diff --git a/tailwind.config.ts b/tailwind.config.ts index 79cd7e2..ae40136 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -11,10 +11,11 @@ export default { colors: { background: "var(--background)", foreground: "var(--foreground)", - "not-connected": "#A1A1D6", + "heading-bg": "#14161C", + "lavander-sky": "#A1A1D6", "default-color": "#464C5E", "color-inner-section": "#262933", - "chevron-default": "#aecbfc", + "light-blue": "#aecbfc", "section-list-button-text": "#6f727c", "section-list-button-background": "#14161c", },