Skip to content

Commit

Permalink
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
@@ -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
@@ -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>
2 changes: 1 addition & 1 deletion src/components/ProgressBar/index.tsx
Original file line number Diff line number Diff line change
@@ -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>

0 comments on commit 97aa94f

Please sign in to comment.