From a06dffca9698e5ea70e5a9508a365bb5a84d5ef2 Mon Sep 17 00:00:00 2001 From: BrianJiang2021 <80307788+BrianJiang2021@users.noreply.github.com> Date: Wed, 6 Dec 2023 14:28:35 +0800 Subject: [PATCH] fix: quote table style (#864) * fix: qupte table border style https://bigc-b2b.atlassian.net/browse/BUN-1692 * fix: remove code --- .../src/pages/quote/components/QuoteDetailTable.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/storefront/src/pages/quote/components/QuoteDetailTable.tsx b/apps/storefront/src/pages/quote/components/QuoteDetailTable.tsx index c2884c3e..b0c13b93 100644 --- a/apps/storefront/src/pages/quote/components/QuoteDetailTable.tsx +++ b/apps/storefront/src/pages/quote/components/QuoteDetailTable.tsx @@ -72,6 +72,10 @@ const StyledQuoteTableContainer = styled('div')(() => ({ backgroundColor: '#FFFFFF', padding: '1rem', width: '100%', + border: '1px solid #E0E0E0', + boxShadow: + '0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px rgba(0, 0, 0, 0.14), 0px 1px 3px rgba(0, 0, 0, 0.12)', + borderRadius: '4px', '& tbody': { '& tr': { @@ -343,7 +347,6 @@ function QuoteDetailTable(props: ShoppingDetailTableProps, ref: Ref) { {b3Lang('quoteDetail.table.totalProducts', { total: total || 0 })} -