fix design home page background

This commit is contained in:
Ehsan
2024-10-23 02:41:15 +03:30
parent 783a1e7e2d
commit 2154962ba1
3 changed files with 11 additions and 3 deletions
+5 -1
View File
@@ -1,6 +1,6 @@
import { TextField } from "@mui/material";
function Field({ title, type, multiline, isPlaceHolder }) {
function Field({ title, type, props, multiline, isPlaceHolder }) {
return (
<TextField
placeholder={isPlaceHolder && title}
@@ -24,6 +24,10 @@ function Field({ title, type, multiline, isPlaceHolder }) {
transition: "0.5s all",
},
},
"& input::-webkit-outer-spin-button, & input::-webkit-inner-spin-button":
{
display: "none",
},
}}
/>
);