From ba4d0f729a5740759cdaf7bf2f281213d0d08cc2 Mon Sep 17 00:00:00 2001 From: karthikalakshmi Date: Fri, 6 Mar 2026 09:58:14 +0530 Subject: [PATCH] FIX #253 Table 7 design issue --- .../BSBillingTable7/BSBilling7Payment.jsx | 38 +---------------- .../BSBillingTable7/BSBillingTable7.scss | 42 ++++++++++++++++++- 2 files changed, 42 insertions(+), 38 deletions(-) diff --git a/src/Pages/BookingScreen/Components/BSBillingTables/BSBillingTable7/BSBilling7Payment.jsx b/src/Pages/BookingScreen/Components/BSBillingTables/BSBillingTable7/BSBilling7Payment.jsx index d0f6d14..7d58b8b 100644 --- a/src/Pages/BookingScreen/Components/BSBillingTables/BSBillingTable7/BSBilling7Payment.jsx +++ b/src/Pages/BookingScreen/Components/BSBillingTables/BSBillingTable7/BSBilling7Payment.jsx @@ -4254,43 +4254,7 @@ const BSBilling7Payment = () => { -
- - - - - {/* - - */} - - - } - trigger="click" - placement="top" - style={{ width: '300px' }} - // width={1000} - open={open2} - onOpenChange={handleOpenChange2} - > - - - - -
+
diff --git a/src/Styles/BookingScreen/Components/BSBillingTables/BSBillingTable7/BSBillingTable7.scss b/src/Styles/BookingScreen/Components/BSBillingTables/BSBillingTable7/BSBillingTable7.scss index b1e3c37..89b7fe1 100644 --- a/src/Styles/BookingScreen/Components/BSBillingTables/BSBillingTable7/BSBillingTable7.scss +++ b/src/Styles/BookingScreen/Components/BSBillingTables/BSBillingTable7/BSBillingTable7.scss @@ -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; +}