diff --git a/src/App.css b/src/App.css
index 6c3915e..b5860cb 100644
--- a/src/App.css
+++ b/src/App.css
@@ -14,3 +14,9 @@
content: unset;
}
}
+
+@media (min-width: 576px) {
+ .res {
+ display: none;
+ }
+}
diff --git a/src/Pages/Store/Calendar/index.js b/src/Pages/Store/Calendar/index.js
index 37932de..a219aad 100644
--- a/src/Pages/Store/Calendar/index.js
+++ b/src/Pages/Store/Calendar/index.js
@@ -3,11 +3,13 @@ import {
Card,
Col,
Form,
+ Grid,
Result,
Row,
Space,
Spin,
Switch,
+ Typography,
} from "antd";
import { useTranslation } from "react-i18next";
import {
@@ -32,6 +34,8 @@ import MyModal, {
} from "../../../Components/MyModal";
import { useParams } from "react-router-dom";
+const { useBreakpoint } = Grid;
+
export default function StoreCalendar() {
const { t } = useTranslation();
const { storeId } = useParams();
@@ -145,6 +149,7 @@ function CardPersonalCalendarSettings({ settings }) {
const { t } = useTranslation();
const [form] = Form.useForm();
const [formUnlinkCalendar] = Form.useForm();
+ const screenBreakpoint = useBreakpoint();
const [requestState, setRequestState] = useState(RequestState.INIT);
const delayTimeout = useRef();
@@ -201,21 +206,68 @@ function CardPersonalCalendarSettings({ settings }) {
formUnlinkCalendar.resetFields();
}, [isModalOpen]);
+ const CardTitleContent = () => {
+ return (
+ <>
+
+ {t("calendar.cardPersonalCalendarSettings.title")}
+
+
+
+
+
+
+
+ >
+ );
+ };
+
return (
<>
-
-
-
-
+ title={
+ screenBreakpoint.xl ? (
+
+
+
+ ) : (
+
+
+
+ )
}
>