-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'staging' into emc/chore/1639-integrate-swr-with-typesaf…
…e-api-client
- Loading branch information
Showing
44 changed files
with
8,488 additions
and
22,157 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { urls } from "@klimadao/lib/constants"; | ||
import { t } from "@lingui/macro"; | ||
import { Button } from "@mui/material"; | ||
import Link from "components/Link"; | ||
import { FC } from "react"; | ||
import styles from "./styles.module.scss"; | ||
|
||
export const ExploreMarketplaceButton: FC<{ className?: string }> = ({ | ||
className = "", | ||
}) => { | ||
return ( | ||
<Link href={urls.marketplace}> | ||
<Button className={`${styles.exploreMarketplaceButton} ${className}`}> | ||
{t`Explore Marketplace`} | ||
</Button> | ||
</Link> | ||
); | ||
}; |
15 changes: 15 additions & 0 deletions
15
carbon/components/ExploreMarketplaceButton/styles.module.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
.exploreMarketplaceButton { | ||
white-space: nowrap; | ||
font-size: 1.4rem; | ||
padding: 0 2.4rem; | ||
height: 4.8rem; | ||
color: var(--brand-black); | ||
background-color: var(--brand-green); | ||
border-radius: 4rem; | ||
font-family: Poppins; | ||
font-weight: 600; | ||
|
||
&:hover { | ||
background-color: var(--brand-green); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 18 additions & 2 deletions
20
carbon/components/Layout/MobileMenuButton/styles.module.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.