@james_jayaraj/test-npm 1.1.6 → 1.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/_hola-rx.styles.scss +10 -8
- package/esm2020/lib/rx/rx.component.mjs +12 -3
- package/esm2020/lib/services/common.mjs +3 -2
- package/fesm2015/james_jayaraj-test-npm.mjs +13 -3
- package/fesm2015/james_jayaraj-test-npm.mjs.map +1 -1
- package/fesm2020/james_jayaraj-test-npm.mjs +13 -3
- package/fesm2020/james_jayaraj-test-npm.mjs.map +1 -1
- package/lib/rx/rx.component.d.ts +2 -0
- package/lib/services/common.d.ts +1 -0
- package/package.json +1 -1
package/_hola-rx.styles.scss
CHANGED
|
@@ -1132,6 +1132,7 @@ a {
|
|
|
1132
1132
|
.new_rx_popup_tab_2 {
|
|
1133
1133
|
padding: 0px 20px;
|
|
1134
1134
|
overflow: auto;
|
|
1135
|
+
overflow-x: hidden !important;
|
|
1135
1136
|
height: $pop-h;
|
|
1136
1137
|
background-color: #fff;
|
|
1137
1138
|
border-radius: 0px;
|
|
@@ -1436,13 +1437,13 @@ a {
|
|
|
1436
1437
|
}
|
|
1437
1438
|
|
|
1438
1439
|
.new_rx_popup_mims .ReactModal__Content {
|
|
1439
|
-
position: relative !important;
|
|
1440
|
-
inset: unset !important;
|
|
1440
|
+
// position: relative !important;
|
|
1441
|
+
// inset: unset !important;
|
|
1441
1442
|
border: 0px !important;
|
|
1442
1443
|
overflow: auto !important;
|
|
1443
1444
|
border-radius: 5px !important;
|
|
1444
1445
|
outline: none;
|
|
1445
|
-
width:
|
|
1446
|
+
width: var(--pop_wid) !important;
|
|
1446
1447
|
transform: translate(0, 0) !important;
|
|
1447
1448
|
align-items: center !important;
|
|
1448
1449
|
/* height: -webkit-fill-available;
|
|
@@ -1701,6 +1702,7 @@ a {
|
|
|
1701
1702
|
.new_rx_popup_tab_1_box {
|
|
1702
1703
|
max-height: 250px;
|
|
1703
1704
|
overflow: auto;
|
|
1705
|
+
overflow-x: hidden !important;
|
|
1704
1706
|
}
|
|
1705
1707
|
|
|
1706
1708
|
.new_rx_popup_tab_2 .react-datepicker__portal {
|
|
@@ -2012,19 +2014,19 @@ $subpop-wid: var(--subpop_wid);
|
|
|
2012
2014
|
inset: 0px;
|
|
2013
2015
|
background-color: rgba(0, 0, 0, 0.5);
|
|
2014
2016
|
z-index: 99999999 !important;
|
|
2015
|
-
|
|
2017
|
+
height: 93% !important;
|
|
2018
|
+
border-radius: 10px;
|
|
2016
2019
|
}
|
|
2017
|
-
|
|
2018
2020
|
.view_pop {
|
|
2019
|
-
position: absolute;
|
|
2020
|
-
inset: 50% auto auto 50%;
|
|
2021
|
+
// position: absolute;
|
|
2022
|
+
// inset: 50% auto auto 50%;
|
|
2021
2023
|
border: 1px solid rgb(204, 204, 204);
|
|
2022
2024
|
background: rgb(255, 255, 255);
|
|
2023
2025
|
overflow: auto;
|
|
2024
2026
|
border-radius: 4px;
|
|
2025
2027
|
outline: none;
|
|
2026
2028
|
padding: 20px;
|
|
2027
|
-
margin
|
|
2029
|
+
margin: auto;
|
|
2028
2030
|
transform: translate(-50%, -50%);
|
|
2029
2031
|
align-items: center;
|
|
2030
2032
|
max-width: $subpop-wid;
|