Skip to content

Commit

Permalink
Merge pull request #192 from scrtlabs/jiri
Browse files Browse the repository at this point in the history
Portfolio improvements
  • Loading branch information
SecretSaturn authored Dec 1, 2024
2 parents 2cdb933 + 2d7f46b commit f1346ae
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions src/pages/portfolio/components/AddressQR.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export default function AddressQR() {
<div className="flex-1 flex flex-row gap-4 items-center justify-center xl:justify-center">
<Link
to="/send"
className="px-4 py-2.5 inline-block bg-cyan-500 dark:bg-cyan-500/20 text-white dark:text-cyan-200 hover:text-cyan-100 hover:bg-cyan-400 dark:hover:bg-cyan-500/50 text-center transition-colors rounded-xl font-semibold text-sm"
className="px-4 py-2.5 inline-block bg-cyan-500 dark:bg-cyan-500/20 text-white dark:text-cyan-200 hover:text-cyan-100 hover:bg-cyan-400 dark:hover:bg-cyan-500/50 text-center transition-colors rounded-xl font-semibold text-xs"
onClick={() => {
trackMixPanelEvent('Clicked Send SCRT')
}}
Expand All @@ -86,13 +86,22 @@ export default function AddressQR() {
</Link>
<Link
to="/get-scrt"
className="px-4 py-2.5 inline-block bg-cyan-500 dark:bg-cyan-500/20 text-white dark:text-cyan-200 hover:text-cyan-100 hover:bg-cyan-400 dark:hover:bg-cyan-500/50 text-center transition-colors rounded-xl font-semibold text-sm"
className="px-4 py-2.5 inline-block bg-cyan-500 dark:bg-cyan-500/20 text-white dark:text-cyan-200 hover:text-cyan-100 hover:bg-cyan-400 dark:hover:bg-cyan-500/50 text-center transition-colors rounded-xl font-semibold text-xs"
onClick={() => {
trackMixPanelEvent('Clicked Get SCRT')
}}
>
Get SCRT
</Link>
<Link
to="/bridge"
className="px-4 py-2.5 inline-block bg-cyan-500 dark:bg-cyan-500/20 text-white dark:text-cyan-200 hover:text-cyan-100 hover:bg-cyan-400 dark:hover:bg-cyan-500/50 text-center transition-colors rounded-xl font-semibold text-xs"
onClick={() => {
trackMixPanelEvent('Clicked bridge')
}}
>
Bridge
</Link>
</div>
</div>

Expand Down

0 comments on commit f1346ae

Please sign in to comment.