Compare commits

...

2 Commits

Author SHA1 Message Date
victorAnumudu f55b7186b9 wallet btn style adjusted 2024-04-05 19:51:47 +01:00
ameye 05515333ba Merge branch 'failed-topup-style' of WrenchBoard/Users-Wrench into master 2024-04-05 17:02:25 +00:00
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -16,7 +16,7 @@ function WalletAction({ walletItem, payment, openPopUp }) {
return ( return (
<div className="counters w-full flex justify-between gap-2"> <div className="counters w-full flex justify-between gap-2">
<div className="w-1/2 flex justify-center items-center"> <div className="w-1/2 flex justify-start items-center">
<button <button
onClick={() => { onClick={() => {
setShowNairaWithdraw((prev) => ({ ...prev, show: true })); setShowNairaWithdraw((prev) => ({ ...prev, show: true }));
@@ -28,7 +28,7 @@ function WalletAction({ walletItem, payment, openPopUp }) {
Spend Spend
</button> </button>
</div> </div>
<div className="w-1/2 flex justify-center items-center"> <div className="w-1/2 flex justify-end items-center">
<button <button
className="logout-btn btn-gradient text-white" className="logout-btn btn-gradient text-white"
onClick={() => { onClick={() => {
+2 -2
View File
@@ -44,7 +44,7 @@ export default function WalletItemCard({ walletItem, payment, countries }) {
return ( return (
<> <>
<div <div
className="current-balance-widget w-full h-full rounded-2xl overflow-hidden flex flex-col items-center gap-2 p-8 justify-between" className="current-balance-widget w-full h-full rounded-2xl overflow-hidden flex flex-col items-center gap-4 p-4 justify-between"
style={{ style={{
background: `url(${background}) 0% 0% / cover no-repeat`, background: `url(${background}) 0% 0% / cover no-repeat`,
}} }}
@@ -86,7 +86,7 @@ export default function WalletItemCard({ walletItem, payment, countries }) {
</span> </span>
</p> </p>
<div className="my-2 w-full h-[1px] bg-white"></div> <div className="w-full h-[1px] bg-white"></div>
<WalletAction <WalletAction
walletItem={{ ...walletItem, walletCountry: currentWalletCurrency }} walletItem={{ ...walletItem, walletCountry: currentWalletCurrency }}
+1 -1
View File
@@ -183,7 +183,7 @@
@apply px-2 min-w-[80px] h-11 flex justify-center items-center text-base rounded-full cursor-pointer @apply px-2 min-w-[80px] h-11 flex justify-center items-center text-base rounded-full cursor-pointer
} }
.logout-btn { .logout-btn {
@apply px-4 min-w-[80px] h-[52px] flex justify-center items-center text-base rounded-full cursor-pointer @apply px-4 min-w-[80px] h-[52px] flex justify-center items-center text-xl font-bold rounded-full cursor-pointer
} }
} }