Skip to content

Commit

Permalink
fix: bulk uplaod layout
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianJiang2021 authored and kris-liu-smile committed Mar 10, 2023
1 parent 8c7bb51 commit 5b8aca4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
4 changes: 1 addition & 3 deletions apps/storefront/src/components/upload/BulkUploadTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -317,9 +317,7 @@ const BulkUploadTable = (props: BulkUploadTableProps) => {
activeTab === 'error' && (
<Box
sx={{
padding: isMobile ? '18px 0' : '18px 16px',
position: 'absolute',
bottom: '-5px',
padding: isMobile ? '18px 0' : '0 16px 18px 16px',
}}
>
<Link
Expand Down
3 changes: 1 addition & 2 deletions apps/storefront/src/pages/dashboard/Dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,7 @@ interface ListItem {

const StyledMenu = styled(Menu)(() => ({
'& .MuiPaper-elevation': {
boxShadow: '0px 2px 5px -1px rgba(0, 0, 0, 0.2), 0px 3px 13px rgba(0, 0, 0, 0.14), 0px 1px 4px rgba(0, 0, 0, 0.12)',
color: 'red',
boxShadow: '0px 1px 0px -1px rgba(0, 0, 0, 0.1), 0px 1px 6px rgba(0, 0, 0, 0.07), 0px 1px 4px rgba(0, 0, 0, 0.06)',
},
}))

Expand Down
2 changes: 1 addition & 1 deletion apps/storefront/src/pages/quote/QuoteDraft.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ const QuoteDraft = ({
message: note,
legalTerms: '',
totalAmount: allPrice.toFixed(2),
grandTotal: (allPrice + allTaxPrice).toFixed(2),
grandTotal: allPrice.toFixed(2),
subtotal: allPrice.toFixed(2),
companyId: isB2BUser ? companyB2BId || salesRepCompanyId : '',
storeHash,
Expand Down

0 comments on commit 5b8aca4

Please sign in to comment.