FIX #253 Table 7 design issue
This commit is contained in:
parent
93f5b0e12b
commit
ba4d0f729a
|
|
@ -4254,43 +4254,7 @@ const BSBilling7Payment = () => {
|
|||
</Popover>
|
||||
</div>
|
||||
|
||||
<div className="Table4-Price-summarypop">
|
||||
<Popover
|
||||
content={
|
||||
<>
|
||||
<a onClick={hide}>
|
||||
<AiOutlineClose color="black" />
|
||||
</a>
|
||||
{/* <span className="Table3-Price-div-table">
|
||||
<BSBillingTable7 optionNames={tableOptions} />
|
||||
</span> */}
|
||||
<BSSummery
|
||||
// Qty={Qty}
|
||||
// Totalitems={TotalItems}
|
||||
// TotalAmount={TotalAmount}
|
||||
// TotalTaxAmount={TotalTaxAmount}
|
||||
// TotalWithoutTaxAmount={TotalWithoutTaxAmount}
|
||||
/>
|
||||
</>
|
||||
}
|
||||
trigger="click"
|
||||
placement="top"
|
||||
style={{ width: '300px' }}
|
||||
// width={1000}
|
||||
open={open2}
|
||||
onOpenChange={handleOpenChange2}
|
||||
>
|
||||
<TooltipWrapper title="Summary" isMobile={isMobile}>
|
||||
<UpCircleOutlined
|
||||
style={{
|
||||
fontSize: '25px',
|
||||
cursor: 'pointer',
|
||||
color: '' ? '#52c41a' : '#1292EE',
|
||||
}}
|
||||
/>
|
||||
</TooltipWrapper>
|
||||
</Popover>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div className="Table4-finalprice">
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
.BSBilling7-tablediv {
|
||||
display: block;
|
||||
height: max-content;
|
||||
height: 59vh;
|
||||
overflow-y: scroll;
|
||||
max-height: 59vh;
|
||||
// height: 90%;
|
||||
|
|
@ -533,3 +533,43 @@ hr.Table7-Dotted-Line1 {
|
|||
background-color: var(--SELECTED_COLOR);
|
||||
color: #fff;
|
||||
}
|
||||
.Btn-payment-mode-sel {
|
||||
background-color: var(--DEFAULT_SELECTED_COLOR);
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
border: none;
|
||||
height: 40px;
|
||||
width: 75px;
|
||||
border-radius: 7.2px;
|
||||
color: #fff;
|
||||
padding: 3px;
|
||||
display: flex;
|
||||
gap: 0.2rem;
|
||||
align-items: center;
|
||||
font-family: 'Poppins';
|
||||
justify-content: center;
|
||||
cursor: pointer;
|
||||
text-transform: capitalize;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.Btn-payment-mode {
|
||||
background-color: var(--SELECTED_COLOR);
|
||||
font-size: 14px;
|
||||
border: none;
|
||||
font-weight: 500;
|
||||
height: 40px;
|
||||
outline: none;
|
||||
width: 75px;
|
||||
border-radius: 7.2px;
|
||||
color: #fff;
|
||||
padding: 3px;
|
||||
display: flex;
|
||||
gap: 0.2rem;
|
||||
align-items: center;
|
||||
font-family: 'Poppins';
|
||||
justify-content: center;
|
||||
cursor: pointer;
|
||||
text-transform: capitalize;
|
||||
outline: none;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue