diff --git a/src/Components/EmptySearchList.jsx b/src/Components/EmptySearchList.jsx
index f455898..e720948 100644
--- a/src/Components/EmptySearchList.jsx
+++ b/src/Components/EmptySearchList.jsx
@@ -1,6 +1,6 @@
import { Box, Image, Text } from "@chakra-ui/react"
// import EmptySearchListImage from "../assets/empty_state_empty_folder.svg"
-import EmptySearchListImage from "../assets/EmptySearchList.svg"
+import EmptySearchListImage from "../assets/EmptySearchList.png"
const EmptySearchList = ({message}) => {
return (
@@ -11,7 +11,7 @@ const EmptySearchList = ({message}) => {
flexDirection={'column'}
w={"100%"} h={"80vh"}
>
-
+
{message}
Posts of tanami will appear here.
diff --git a/src/Components/FormField.jsx b/src/Components/FormField.jsx
index 700271c..f573563 100644
--- a/src/Components/FormField.jsx
+++ b/src/Components/FormField.jsx
@@ -47,12 +47,12 @@ const FormField = ({
w={width ? width : "49%"}
isInvalid={errors[name]}
isRequired={isRequired}
- className="mb-3"
+ mb={2}
>
{label}
@@ -70,10 +70,11 @@ const FormField = ({
{...field}
{...props}
cursor={"pointer"}
+ fontSize={'sm'}
placeholder={placeHolder ? placeHolder : label}
textAlign={arabic ? "right" : "left"}
- _placeholder={{ fontSize: "xs" }}
- borderRadius={"4px"}
+ _placeholder={{ fontSize: "sm" }}
+ rounded={'sm'}
>
{options.map((option, index) => (