diff --git a/src/views/components/common/CalendarGrid/CalendarGrid.tsx b/src/views/components/common/CalendarGrid/CalendarGrid.tsx
index 0ed4942a..bc9504d6 100644
--- a/src/views/components/common/CalendarGrid/CalendarGrid.tsx
+++ b/src/views/components/common/CalendarGrid/CalendarGrid.tsx
@@ -33,9 +33,7 @@ const Calendar: React.FC = (props) => {
{/* Displaying the rest of the calendar */}
{grid.map((row, rowIndex) => (
-
- {row}
-
+ row
))}
diff --git a/src/views/components/common/CalendarGridCell/CalendarGridCell.module.scss b/src/views/components/common/CalendarGridCell/CalendarGridCell.module.scss
index c1429304..f56b322e 100644
--- a/src/views/components/common/CalendarGridCell/CalendarGridCell.module.scss
+++ b/src/views/components/common/CalendarGridCell/CalendarGridCell.module.scss
@@ -1,6 +1,12 @@
.calendarCell {
- flex: 1;
- border: 1px solid #ddd;
- min-height: 50px;
+ display: flex;
+ width: 165px;
+ height: 52.231px;
+ min-width: 45px;
+ min-height: 40px;
+ flex-direction: column;
+ justify-content: center;
+ align-items: flex-start;
+ border: 1px solid #DADCE0;
}
\ No newline at end of file
diff --git a/src/views/components/common/CalendarGridCell/CalendarGridCell.tsx b/src/views/components/common/CalendarGridCell/CalendarGridCell.tsx
index 69e451db..cdc2c1b1 100644
--- a/src/views/components/common/CalendarGridCell/CalendarGridCell.tsx
+++ b/src/views/components/common/CalendarGridCell/CalendarGridCell.tsx
@@ -9,7 +9,7 @@ const CalendarCell: React.FC = (props) => {
return (
);