Skip to content

Commit

Permalink
Merge pull request #4 from poap-xyz/release/v1.1.1
Browse files Browse the repository at this point in the history
Release v1.1.1
  • Loading branch information
jm42 authored May 8, 2023
2 parents c6dd92b + bdab4bc commit 4717033
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@poap-xyz/poap-family",
"version": "1.1.0",
"version": "1.1.1",
"author": {
"name": "POAP",
"url": "https://poap.xyz"
Expand Down
6 changes: 5 additions & 1 deletion src/pages/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,11 @@ function Home() {
<span className="dot">·</span>
<a className="link" href="https://poap.notion.site/POAP-Family-FAQ-cef29bc0bb8c4f8f936164d988a944cc" target="_blank" rel="noopener noreferrer">faq</a>
<span className="dot">·</span>
<span className="text version">v{packageJson.version.split('.').slice(0, -1).join('.')}</span>
<span className="text version">
<a href={`https://github.com/poap-xyz/poap-family/releases/tag/v${packageJson.version}`}>
v{packageJson.version.split('.').slice(0, -1).join('.')}
</a>
</span>
</div>
</CenterPage>
)
Expand Down
6 changes: 5 additions & 1 deletion src/styles/home.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,13 @@
line-height: 1;
}

.footer .version {
.footer .version, .footer .version a {
color: #a1a1a1;
}
.footer .version a:hover {
color: #666;
text-decoration: none;
}

.footer .link, .footer .text {
font-size: 12px;
Expand Down

0 comments on commit 4717033

Please sign in to comment.