Skip to content

Commit

Permalink
Merge pull request #36 from kooya3/feat/bc-integration
Browse files Browse the repository at this point in the history
Feat/bc integration
  • Loading branch information
suleyunus authored Aug 28, 2024
2 parents bda84db + 5e802c8 commit 1c194c4
Show file tree
Hide file tree
Showing 48 changed files with 4,411 additions and 4,013 deletions.
2 changes: 1 addition & 1 deletion build/index.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!doctype html><html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/><meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no"/><link rel="icon" href="data:," data-placeholder-favicon/><script defer="defer" src="/admin/styles.31f3d4bf2bbeae911e3f.js"></script><script defer="defer" src="/admin/main.20ce38cb5e6d1c7f3ceb.js"></script><link href="/admin/styles.7094867468f7520dadc8.css" rel="stylesheet"></head><body><div id="app"></div><div id="portal"></div></body></html>
<!doctype html><html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/><meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no"/><link rel="icon" href="data:," data-placeholder-favicon/><script defer="defer" src="/admin/styles.31f3d4bf2bbeae911e3f.js"></script><script defer="defer" src="/admin/main.6e839b0314db5eebab2d.js"></script><link href="/admin/styles.7094867468f7520dadc8.css" rel="stylesheet"></head><body><div id="app"></div><div id="portal"></div></body></html>
84 changes: 84 additions & 0 deletions build/main.0e510f7943781f63534c.js

Large diffs are not rendered by default.

84 changes: 84 additions & 0 deletions build/main.6e839b0314db5eebab2d.js

Large diffs are not rendered by default.

17 changes: 0 additions & 17 deletions src/app/(pages)/checkout/CheckoutForm/index.module.scss

This file was deleted.

165 changes: 0 additions & 165 deletions src/app/(pages)/checkout/CheckoutForm/index.tsx

This file was deleted.

1 change: 1 addition & 0 deletions src/app/(pages)/checkout/CheckoutItem/index.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
min-height: 80px;
padding: 8px;
background-color: var(--gray-4);
flex-grow: 1;
}

.media {
Expand Down
10 changes: 5 additions & 5 deletions src/app/(pages)/checkout/CheckoutItem/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@ import classes from './index.module.scss'

export const CheckoutItem = ({ product, title, metaImage, quantity }) => {
return (
<li className="flex py-6">
<li className="flex gap-2 py-6">
<Link href={`/products/${product.slug}`} className={classes.mediaWrapper}>
{!metaImage && <span>No image</span>}
{metaImage && typeof metaImage !== 'string' && (
<Media className={classes.media} imgClassName={classes.image} resource={metaImage} fill />
)}
</Link>

<div className="ml-6 flex flex-1 flex-col">
<div className="flex">
<div className="flex flex-col">
<div className="flex py-2">
<div className="min-w-0 flex-1">
<h4 className="text-sm">
<h4 className="text-sm" style={{ lineHeight: 1 }}>
<Link
href={`/products/${product.slug}`}
className="font-medium text-gray-700 hover:text-gray-800"
Expand All @@ -28,7 +28,7 @@ export const CheckoutItem = ({ product, title, metaImage, quantity }) => {
</h4>
</div>

<div className="ml-4 flow-root flex-shrink-0 text-xs">
<div className="ml-4 flow-root flex-shrink-0 !text-xs">
<Price product={product} button={false} quantity={quantity} />
</div>
</div>
Expand Down
Loading

0 comments on commit 1c194c4

Please sign in to comment.