Skip to content

Commit

Permalink
Merge pull request #43 from map3xyz/fix/release
Browse files Browse the repository at this point in the history
fix: add back rainbow progress
  • Loading branch information
plondon authored Dec 23, 2022
2 parents 6860b75 + 97aa94f commit 7384720
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ jobs:
uses: gacts/purge-jsdelivr-cache@v1
with:
url: |
https://cdn.jsdelivr.net/gh/map3xyz/payments-sdk/dist/global/index.js
https://cdn.jsdelivr.net/gh/map3xyz/payments-sdk/dist/index.css
https://cdn.jsdelivr.net/gh/map3xyz/payments-sdk@latest/dist/global/index.js
https://cdn.jsdelivr.net/gh/map3xyz/payments-sdk@latest/dist/index.css
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
<html lang="en">
<head>
...
<script src="https://map3xyz.github.io/payments-sdk/dist/global/index.js"></script>
<link rel="stylesheet" href="https://map3xyz.github.io/payments-sdk/dist/index.css"></link>
<script src="https://cdn.jsdelivr.net/gh/map3xyz/payments-sdk/dist/global/index.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/map3xyz/payments-sdk/dist/index.css"></link>
</head>

<body>
Expand Down
2 changes: 1 addition & 1 deletion src/components/ProgressBar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const ProgressBar: React.FC<Props> = ({ progress }) => {
return (
<div className="relative h-1 w-full rounded-lg bg-neutral-100 dark:bg-neutral-800">
<div
className="absolute left-0 h-full rounded-lg bg-orange-600 transition-all duration-150"
className="rainbow-background absolute left-0 h-full rounded-lg bg-orange-600 transition-all duration-150"
style={{ width: progress * 100 + '%' }}
></div>
</div>
Expand Down

0 comments on commit 7384720

Please sign in to comment.