change date type for req & design and fields & add requests & fix bug appointment and dashboard

This commit is contained in:
Ehsan
2025-07-04 23:44:29 +03:30
parent 597fa1931d
commit f951128074
19 changed files with 273 additions and 58 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ function Field({
<TextField
{...props}
size="small"
defaultValue={value}
defaultValue={value || ""}
type={type || "text"}
multiline={!!multiline}
rows={!!multiline ? 4 : 1}
+10 -2
View File
@@ -440,7 +440,14 @@ html {
.icon-keyboard_double_arrow_right,
.icon-keyboard_double_arrow_left {
display: none !important;
color: transparent !important;
}
.icon-keyboard_double_arrow_right::before,
.icon-keyboard_double_arrow_left::before {
background: url(../public/assets/icons/double-right.svg);
width: 24px;
height: 24px;
}
.icon-chevron-right::before,
@@ -451,7 +458,8 @@ html {
height: 24px;
}
.icon-chevron-left::before {
.icon-chevron-left::before,
.icon-keyboard_double_arrow_left::before {
rotate: 180deg;
}