catchup-library-web 2.2.19 → 2.2.20

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 CHANGED
@@ -1293,7 +1293,7 @@ var BasePDF_default = BasePDF;
1293
1293
  // src/components/activities/empty-contents/ActivityEmptyContent.tsx
1294
1294
  var import_jsx_runtime17 = require("react/jsx-runtime");
1295
1295
  var ActivityEmptyContent = () => {
1296
- return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "flex flex-col items-center justify-center border-2 border-catchup-orange rounded-catchup-xlarge px-5 py-2 my-5 bg-catchup-orange", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { className: "text-catchup-white text-xl", children: i18n_default.t("you_have_set_this_activity_as_empty") }) }) });
1296
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "flex flex-col items-center justify-center border-2 border-catchup-orange rounded-catchup-xlarge px-5 py-2 mb-2 bg-catchup-orange text-catchup-white", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { className: "text-lg", children: i18n_default.t("you_have_set_this_activity_as_empty") }) });
1297
1297
  };
1298
1298
  var ActivityEmptyContent_default = ActivityEmptyContent;
1299
1299
 
package/dist/index.mjs CHANGED
@@ -1070,7 +1070,7 @@ var BasePDF_default = BasePDF;
1070
1070
  // src/components/activities/empty-contents/ActivityEmptyContent.tsx
1071
1071
  import { jsx as jsx17 } from "react/jsx-runtime";
1072
1072
  var ActivityEmptyContent = () => {
1073
- return /* @__PURE__ */ jsx17("div", { className: "flex flex-col items-center justify-center border-2 border-catchup-orange rounded-catchup-xlarge px-5 py-2 my-5 bg-catchup-orange", children: /* @__PURE__ */ jsx17("div", { className: "", children: /* @__PURE__ */ jsx17("p", { className: "text-catchup-white text-xl", children: i18n_default.t("you_have_set_this_activity_as_empty") }) }) });
1073
+ return /* @__PURE__ */ jsx17("div", { className: "flex flex-col items-center justify-center border-2 border-catchup-orange rounded-catchup-xlarge px-5 py-2 mb-2 bg-catchup-orange text-catchup-white", children: /* @__PURE__ */ jsx17("p", { className: "text-lg", children: i18n_default.t("you_have_set_this_activity_as_empty") }) });
1074
1074
  };
1075
1075
  var ActivityEmptyContent_default = ActivityEmptyContent;
1076
1076
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "catchup-library-web",
3
- "version": "2.2.19",
3
+ "version": "2.2.20",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -2,12 +2,8 @@ import i18n from "../../../language/i18n";
2
2
 
3
3
  const ActivityEmptyContent = () => {
4
4
  return (
5
- <div className="flex flex-col items-center justify-center border-2 border-catchup-orange rounded-catchup-xlarge px-5 py-2 my-5 bg-catchup-orange">
6
- <div className="">
7
- <p className="text-catchup-white text-xl">
8
- {i18n.t("you_have_set_this_activity_as_empty")}
9
- </p>
10
- </div>
5
+ <div className="flex flex-col items-center justify-center border-2 border-catchup-orange rounded-catchup-xlarge px-5 py-2 mb-2 bg-catchup-orange text-catchup-white">
6
+ <p className="text-lg">{i18n.t("you_have_set_this_activity_as_empty")}</p>
11
7
  </div>
12
8
  );
13
9
  };