From 2cd2081973e35a87bc4e51e041ffdd928cc09b36 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 12 Feb 2026 16:03:40 +0530 Subject: [PATCH] Fix merge conflict in Product.scss --- src/Styles/Product/Product.scss | 35 +++++++++++++++++++++++++++++++-- 1 file changed, 33 insertions(+), 2 deletions(-) diff --git a/src/Styles/Product/Product.scss b/src/Styles/Product/Product.scss index 9b8beb3..60a5688 100644 --- a/src/Styles/Product/Product.scss +++ b/src/Styles/Product/Product.scss @@ -21,6 +21,7 @@ .productinputForm { display: flex; flex-wrap: wrap; + gap: 6px; & .field-DropDown { width: 200px !important; @@ -117,6 +118,24 @@ left: 2px; } } +.ProSubRowFlex { + display: flex; + flex-wrap: wrap; + flex-direction: row; + gap: 1.5rem; + width: 100%; + + .ant-form-item, + .float-label { + margin-bottom: 0; + } + + .ant-form-item-explain-error { + position: relative; + top: 16px; + left: 2px; + } +} .scannerdiv { display: flex; @@ -462,10 +481,12 @@ flex-wrap: wrap; justify-content: flex-start; padding-bottom: 0; + flex-direction: row !important; @media (max-width: 768px) { gap: 10px; align-items: flex-start; + justify-content: space-between; } } @@ -482,7 +503,8 @@ } .productFormproductImg { - width: 350px; + width: 250px; + height: 190px; align-items: center; } @@ -604,4 +626,13 @@ height: 12px; background-color: #fff; padding: 2px; -} \ No newline at end of file +} +.ProductMainRowFlex { + display: flex; + align-items: flex-start; + gap: 1rem; + width: 100%; + @media (max-width: 768px) { + flex-direction: column; + } +}