Skip to content

Commit

Permalink
fix: quote table style (#864)
Browse files Browse the repository at this point in the history
* fix: qupte table border style
https://bigc-b2b.atlassian.net/browse/BUN-1692

* fix: remove code
  • Loading branch information
BrianJiang2021 authored and libruce committed Dec 27, 2023
1 parent 23d9866 commit a06dffc
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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': {
Expand Down Expand Up @@ -343,7 +347,6 @@ function QuoteDetailTable(props: ShoppingDetailTableProps, ref: Ref<unknown>) {
{b3Lang('quoteDetail.table.totalProducts', { total: total || 0 })}
</Typography>
</Box>

<B3PaginationTable
ref={paginationTableRef}
columnItems={columnItems}
Expand Down

0 comments on commit a06dffc

Please sign in to comment.