diff options
| author | Rafi Zadanly <rafizadanly@gmail.com> | 2022-12-14 12:02:43 +0700 |
|---|---|---|
| committer | Rafi Zadanly <rafizadanly@gmail.com> | 2022-12-14 12:02:43 +0700 |
| commit | 4e2b85a16b032df07686fd044ba9183afceb8b11 (patch) | |
| tree | b48d73fd63202cf2ab97841c35d82b61ee8e2372 | |
| parent | 39a2e8012ba38d6663820ae27080a2b843c08c5f (diff) | |
no message
| -rw-r--r-- | src/pages/shop/cart.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/pages/shop/cart.js b/src/pages/shop/cart.js index 2de1a7ac..635d4efd 100644 --- a/src/pages/shop/cart.js +++ b/src/pages/shop/cart.js @@ -17,22 +17,22 @@ export default function Cart() { {/* Progress Bar */} <div className="bg-gray_r-2 flex gap-x-2 p-4 rounded-md mb-4"> <div className="flex gap-x-2 items-center"> - <div className="bg-yellow_r-9 leading-none p-2 rounded-full w-7 text-center text-gray_r-12">1</div> - <p className="font-medium">Keranjang</p> + <div className="bg-yellow_r-9 leading-none p-2 rounded-full w-7 text-center text-gray_r-12 text-caption-2">1</div> + <p className="font-medium text-gray_r-12 text-caption-2">Keranjang</p> </div> <div className="flex-1 flex items-center"> <div className="h-0.5 w-full bg-gray_r-7"></div> </div> <div className="flex gap-x-2 items-center"> - <div className="bg-gray_r-3 leading-none p-2 rounded-full w-7 text-center text-gray_r-11">2</div> - <p className="font-medium text-gray_r-11">Pembayaran</p> + <div className="bg-gray_r-3 leading-none p-2 rounded-full w-7 text-center text-gray_r-11 text-caption-2">2</div> + <p className="font-medium text-gray_r-11 text-caption-2">Pembayaran</p> </div> <div className="flex-1 flex items-center"> <div className="h-0.5 w-full bg-gray_r-7"></div> </div> <div className="flex gap-x-2 items-center"> - <div className="bg-gray_r-3 leading-none p-2 rounded-full w-7 text-center text-gray_r-11">3</div> - <p className="font-medium text-gray_r-11">Selesai</p> + <div className="bg-gray_r-3 leading-none p-2 rounded-full w-7 text-center text-gray_r-11 text-caption-2">3</div> + <p className="font-medium text-gray_r-11 text-caption-2">Selesai</p> </div> </div> {/* [End] Progress Bar */} |
