Skip to content

Commit e7c99a6

Browse files
authored
Merge pull request #185 from pyth-network/frontend/unvested-modal
update unvested modal flow
2 parents fdd5b09 + acd15a3 commit e7c99a6

File tree

6 files changed

+342
-252
lines changed

6 files changed

+342
-252
lines changed

frontend/components/Header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const Header = () => {
1717
<img src="/pyth-logo-white.svg" className="h-30 mr-3" />
1818
</Link>
1919
</div>
20-
<div className="hidden space-x-20 md:flex">
20+
<div className="hidden space-x-10 md:flex">
2121
<Link href="/staking">
2222
<a
2323
className={
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
const CloseIcon = () => {
2+
return (
3+
<svg
4+
xmlns="http://www.w3.org/2000/svg"
5+
className="h-8 w-8 text-scampi hover:text-white"
6+
fill="none"
7+
viewBox="0 0 24 24"
8+
stroke="currentColor"
9+
strokeWidth={2}
10+
>
11+
<path
12+
strokeLinecap="round"
13+
strokeLinejoin="round"
14+
d="M6 18L18 6M6 6l12 12"
15+
/>
16+
</svg>
17+
)
18+
}
19+
20+
export default CloseIcon

frontend/package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"react-dom": "^17.0.2",
2525
"react-hot-toast": "^2.2.0",
2626
"serve": "13.0.2",
27-
"pyth-staking-api": "1.2.8"
27+
"pyth-staking-api": "1.2.14"
2828
},
2929
"devDependencies": {
3030
"@tailwindcss/typography": "^0.5.2",

0 commit comments

Comments
 (0)