icon color and size changed

This commit was merged in pull request #299.
This commit is contained in:
victorAnumudu
2023-07-12 21:31:09 +01:00
parent 0aef8c5e1e
commit c4872f522b
4 changed files with 6 additions and 7 deletions
+1 -1
View File
@@ -53,7 +53,7 @@ export default function WalletHeader(props) {
<div className="sm:flex justify-between items-center">
<div className="account-name flex space-x-4 items-center mb-2 sm:mb-0">
<div className="icon w-14 h-14 transition duration-300 ease-in-out rounded-full flex justify-center items-center bg-light-purple dark:bg-dark-light-purple ">
<img src={localImgLoad(`images/currency/${image}`)} alt="" />
<img src={localImgLoad(`images/currency/${image}`)} className="w-14 h-14" alt="" />
</div>
<div className="name">
<p className="text-base text-dark-gray dark:text-white font-medium">
+3 -4
View File
@@ -41,7 +41,7 @@ export default function WalletItemCard({ walletItem, payment }) {
}}
>
<div className="wallet flex justify-start">
<div className="w-[100px] h-[100px] rounded-full bg-[#485199] flex justify-center items-center">
<div className="w-[100px] h-[100px] rounded-full bg-[#e3e3e3] flex justify-center items-center">
<img src={localImgLoad(`images/currency/${image}`)} className="w-full h-full" alt="curreny-icon" />
</div>
</div>
@@ -82,7 +82,7 @@ export default function WalletItemCard({ walletItem, payment }) {
to="transfer-fund"
className={`${
walletItem.code != "NAIRA" && "invisible"
} px-2 py-1 flex items-center gap-2 user-balance cursor-pointer h-[40px] rounded-full relative bg-white lg:text-xl text-lg font-bold text-green-500`}
} px-4 h-10 flex justify-center items-center btn-gradient text-base rounded-full text-white`}
>
Spend
</Link>
@@ -90,7 +90,7 @@ export default function WalletItemCard({ walletItem, payment }) {
<div>
<button
// state={{ currency: walletItem.description }}
className="px-2 py-1 flex items-center gap-2 user-balance cursor-pointer h-[40px] rounded-full bg-white lg:text-xl text-lg font-bold text-sky-blue group relative transition duration-300 stroke-black fill-white"
className='px-4 h-10 flex justify-center items-center btn-gradient text-base rounded-full text-white'
onClick={() => {
openPopUp({
payment: payment,
@@ -114,7 +114,6 @@ export default function WalletItemCard({ walletItem, payment }) {
</svg>
</span> */}
<span className="">Add Credit</span>
<span className="absolute inset-0 w-full h-full transition-all duration-300 ease-out bg-gray-300 group-hover:bg-gray-400 opacity-0"></span>
</button>
</div>
</div>