THEY'RE EVOLVING CUBES

This commit is contained in:
2024-02-05 22:05:20 -06:00
parent 3d95d03813
commit a71bc0f9c3
3 changed files with 11 additions and 7 deletions

View File

@@ -33,9 +33,7 @@ const Calendar: React.FC = (props) => {
{/* Displaying the rest of the calendar */} {/* Displaying the rest of the calendar */}
<div className={styles.calendarGrid}> <div className={styles.calendarGrid}>
{grid.map((row, rowIndex) => ( {grid.map((row, rowIndex) => (
<div className={styles.row} key={rowIndex}> row
{row}
</div>
))} ))}
</div> </div>

View File

@@ -1,6 +1,12 @@
.calendarCell { .calendarCell {
flex: 1; display: flex;
border: 1px solid #ddd; width: 165px;
min-height: 50px; height: 52.231px;
min-width: 45px;
min-height: 40px;
flex-direction: column;
justify-content: center;
align-items: flex-start;
border: 1px solid #DADCE0;
} }

View File

@@ -9,7 +9,7 @@ const CalendarCell: React.FC = (props) => {
return ( return (
<div className={styles.calendarCell}> <div className={styles.calendarCell}>
<div className={styles.hourLine}> <div className={styles.hourLine}>
TEMP
</div> </div>
</div> </div>
); );