catchup-library-web 1.12.11 → 1.12.13
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/dist/index.js +2 -3
- package/dist/index.mjs +2 -3
- package/package.json +1 -1
- package/src/components/modals/BaseModal.tsx +2 -3
package/dist/index.js
CHANGED
|
@@ -1011,7 +1011,6 @@ var BaseModal = ({
|
|
|
1011
1011
|
onRequestClose,
|
|
1012
1012
|
style: {
|
|
1013
1013
|
content: {
|
|
1014
|
-
fontFamily: "Quicksand",
|
|
1015
1014
|
top: "50%",
|
|
1016
1015
|
left: "50%",
|
|
1017
1016
|
right: "auto",
|
|
@@ -1032,10 +1031,10 @@ var BaseModal = ({
|
|
|
1032
1031
|
}
|
|
1033
1032
|
},
|
|
1034
1033
|
contentLabel: "",
|
|
1035
|
-
children: customSize ? /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: `${customSize}`, children }) : /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
1034
|
+
children: customSize ? /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: `${customSize} font-quicksand`, children }) : /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
1036
1035
|
"div",
|
|
1037
1036
|
{
|
|
1038
|
-
className:
|
|
1037
|
+
className: `font-quicksand ${size === "small" ? "w-[600px]" : size === "medium" ? "w-[900px]" : "w-[600px] lg:w-[900px] xl:w-[1200px] 2xl:w-[1500px]"}`,
|
|
1039
1038
|
children
|
|
1040
1039
|
}
|
|
1041
1040
|
)
|
package/dist/index.mjs
CHANGED
|
@@ -808,7 +808,6 @@ var BaseModal = ({
|
|
|
808
808
|
onRequestClose,
|
|
809
809
|
style: {
|
|
810
810
|
content: {
|
|
811
|
-
fontFamily: "Quicksand",
|
|
812
811
|
top: "50%",
|
|
813
812
|
left: "50%",
|
|
814
813
|
right: "auto",
|
|
@@ -829,10 +828,10 @@ var BaseModal = ({
|
|
|
829
828
|
}
|
|
830
829
|
},
|
|
831
830
|
contentLabel: "",
|
|
832
|
-
children: customSize ? /* @__PURE__ */ jsx11("div", { className: `${customSize}`, children }) : /* @__PURE__ */ jsx11(
|
|
831
|
+
children: customSize ? /* @__PURE__ */ jsx11("div", { className: `${customSize} font-quicksand`, children }) : /* @__PURE__ */ jsx11(
|
|
833
832
|
"div",
|
|
834
833
|
{
|
|
835
|
-
className:
|
|
834
|
+
className: `font-quicksand ${size === "small" ? "w-[600px]" : size === "medium" ? "w-[900px]" : "w-[600px] lg:w-[900px] xl:w-[1200px] 2xl:w-[1500px]"}`,
|
|
836
835
|
children
|
|
837
836
|
}
|
|
838
837
|
)
|
package/package.json
CHANGED
|
@@ -16,7 +16,6 @@ const BaseModal = ({
|
|
|
16
16
|
onRequestClose={onRequestClose}
|
|
17
17
|
style={{
|
|
18
18
|
content: {
|
|
19
|
-
fontFamily: "Quicksand",
|
|
20
19
|
top: "50%",
|
|
21
20
|
left: "50%",
|
|
22
21
|
right: "auto",
|
|
@@ -39,10 +38,10 @@ const BaseModal = ({
|
|
|
39
38
|
contentLabel=""
|
|
40
39
|
>
|
|
41
40
|
{customSize ? (
|
|
42
|
-
<div className={`${customSize}`}>{children}</div>
|
|
41
|
+
<div className={`${customSize} font-quicksand`}>{children}</div>
|
|
43
42
|
) : (
|
|
44
43
|
<div
|
|
45
|
-
className={
|
|
44
|
+
className={`font-quicksand ${
|
|
46
45
|
size === "small"
|
|
47
46
|
? "w-[600px]"
|
|
48
47
|
: size === "medium"
|