summaryrefslogtreecommitdiff
path: root/src-migrate/modules/cart/styles/CartItem.module.css
diff options
context:
space:
mode:
Diffstat (limited to 'src-migrate/modules/cart/styles/CartItem.module.css')
-rw-r--r--src-migrate/modules/cart/styles/CartItem.module.css47
1 files changed, 47 insertions, 0 deletions
diff --git a/src-migrate/modules/cart/styles/CartItem.module.css b/src-migrate/modules/cart/styles/CartItem.module.css
new file mode 100644
index 00000000..8ee3d3e9
--- /dev/null
+++ b/src-migrate/modules/cart/styles/CartItem.module.css
@@ -0,0 +1,47 @@
+.wrapper {
+ @apply border-b border-gray-300 pb-8;
+}
+
+.mainProdWrapper {
+ @apply flex;
+}
+
+.image {
+ @apply h-32 w-32 rounded flex p-2 border border-gray-300;
+}
+
+.noImage {
+ @apply m-auto font-semibold text-gray-400;
+}
+
+.details {
+ @apply ml-4 flex flex-col gap-y-1;
+}
+
+.name {
+ @apply font-medium;
+}
+
+.spacing2 {
+ @apply h-2;
+}
+
+.discPriceSection {
+ @apply flex gap-x-2.5;
+}
+
+.priceBefore {
+ @apply line-through text-gray-500;
+}
+
+.price {
+ @apply text-red-600 font-medium;
+}
+
+.savingAmt {
+ @apply text-success-600;
+}
+
+.weightLabel {
+ @apply text-gray-500;
+}