diff --git a/src/components/calender/Day.tsx b/src/components/calender/Day.tsx
index fae73c9..54fa7d2 100644
--- a/src/components/calender/Day.tsx
+++ b/src/components/calender/Day.tsx
@@ -113,9 +113,15 @@ const Day = ({
alignContent="center"
justifyContent="flex-start"
>
-
+
{`${getDate(currDateObj)}`}
-
+
{isLoading ? (
@@ -139,8 +145,8 @@ const Day = ({
: tutorial === "edit" &&
!isToday &&
isBefore(currDateObj, endOfDay(currDate))
- ? "gray.600"
- : "transparent"
+ ? "gray.600"
+ : "transparent"
: "transparent"
}
border={
@@ -150,8 +156,8 @@ const Day = ({
: tutorial === "edit" &&
!isToday &&
isBefore(currDateObj, endOfDay(currDate))
- ? "1px solid #00ff3c"
- : "1px solid #0068ff"
+ ? "1px solid #00ff3c"
+ : "1px solid #0068ff"
: "1px solid #0068ff"
}
onClick={() => {
@@ -172,27 +178,39 @@ const Day = ({
: tutorial === "edit" &&
!isToday &&
isBefore(currDateObj, endOfDay(currDate))
- ? "gray.600"
- : "transparent"
+ ? "gray.600"
+ : "transparent"
: "transparent",
border: "1px solid #FFF"
}}
>
- 10
- ? "0px 6px 3px 6px"
- : "0px 9px 3px 9px"
- : "auto"
- }
- border={isToday ? "1px solid #0068ff" : "0px"}
- borderRadius={isToday ? "100px" : "0px"}
- >
- {`${getDate(currDateObj)}`}
-
+ {isToday ?
+ (
+
+ {`${getDate(currDateObj)}`}
+
+ )
+ :
+ (
+
+ {`${getDate(currDateObj)}`}
+
+ )
+ }
{isLoading ? (