This commit is contained in:
2026-03-25 13:06:35 +03:30
parent 44323d9a0e
commit 566d871125
2 changed files with 7 additions and 1 deletions

View File

@@ -85,6 +85,7 @@ function App() {
slidesPerView={3} slidesPerView={3}
spaceBetween={20} spaceBetween={20}
dir="rtl" dir="rtl"
style={{ height: "100%", width: "100%" }} // اضافه کردن این خط
> >
{data?.recordset {data?.recordset
.filter((item) => item.latestPatientStatusId === 1) .filter((item) => item.latestPatientStatusId === 1)
@@ -139,6 +140,7 @@ function App() {
slidesPerView={3} slidesPerView={3}
spaceBetween={20} spaceBetween={20}
dir="rtl" dir="rtl"
style={{ height: "100%", width: "100%" }} // اضافه کردن این خط
> >
{data?.recordset {data?.recordset
.filter((item) => item.latestPatientStatusId === 2) .filter((item) => item.latestPatientStatusId === 2)
@@ -193,6 +195,7 @@ function App() {
slidesPerView={3} slidesPerView={3}
spaceBetween={20} spaceBetween={20}
dir="rtl" dir="rtl"
style={{ height: "100%", width: "100%" }} // اضافه کردن این خط
> >
{data?.recordset {data?.recordset
.filter((item) => item.latestPatientStatusId === 3) .filter((item) => item.latestPatientStatusId === 3)
@@ -247,6 +250,7 @@ function App() {
slidesPerView={3} slidesPerView={3}
spaceBetween={20} spaceBetween={20}
dir="rtl" dir="rtl"
style={{ height: "100%", width: "100%" }} // اضافه کردن این خط
> >
{data?.recordset {data?.recordset
.filter((item) => item.latestPatientStatusId === 4) .filter((item) => item.latestPatientStatusId === 4)

View File

@@ -46,7 +46,9 @@
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
} }
* {
box-sizing: border-box;
}
body { body {
background-color: #fff; background-color: #fff;
min-height: 92vh; min-height: 92vh;