From 730fd6e4ad881c4c7296c24addb0eb7fc290ef0d Mon Sep 17 00:00:00 2001 From: mahdi Date: Wed, 13 Jul 2022 18:00:01 +0430 Subject: [PATCH 1/3] update blog --- src/views/Dashboard/layouts/Main/Addresses/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/Dashboard/layouts/Main/Addresses/index.js b/src/views/Dashboard/layouts/Main/Addresses/index.js index 322380a..858071e 100644 --- a/src/views/Dashboard/layouts/Main/Addresses/index.js +++ b/src/views/Dashboard/layouts/Main/Addresses/index.js @@ -69,7 +69,7 @@ const ProfileAddress = ({ }} >   - {window.t("یک آدرس جfdsدید اضافه کنید")} + {window.t("یک آدرس اضافه کنید")} + From 2036f52599d68752aca48412b46ab1dfb9c06f1c Mon Sep 17 00:00:00 2001 From: mahdi Date: Wed, 13 Jul 2022 18:20:59 +0430 Subject: [PATCH 2/3] update --- src/components/VodProduct/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/VodProduct/index.js b/src/components/VodProduct/index.js index 5ac7d5e..1bf466a 100644 --- a/src/components/VodProduct/index.js +++ b/src/components/VodProduct/index.js @@ -58,8 +58,9 @@ const VodProduct = ({ className="group transition ease-in-out delay-150 duration-300 w-full relative flex items-center justify-center cursor-pointer" style={{ backgroundImage: `url(https://dnvn.ir/api/v1/file/${video?.fileIds})`, - backgroundSize: "100% 100%", + backgroundSize: "cover", backgroundRepeat: "no-repeat", + backgroundPosition: "center center", height: height, }} data-modal-toggle="large-modal" From 9397a598fe52311bad0c861349ee2f29b434e0bc Mon Sep 17 00:00:00 2001 From: mahdi Date: Wed, 13 Jul 2022 18:23:35 +0430 Subject: [PATCH 3/3] update --- src/App.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/App.scss b/src/App.scss index bef4cfb..ccde02b 100644 --- a/src/App.scss +++ b/src/App.scss @@ -139,3 +139,10 @@ iframe { -ms-overflow-style: none; /* IE and Edge */ scrollbar-width: none; /* Firefox */ } + +.line-clamp-3 { + display: -webkit-box; + -webkit-line-clamp: 3; + -webkit-box-orient: vertical; + overflow: hidden; +}