feat: add CSS for calendarCell div

This commit is contained in:
doprz
2024-03-06 13:26:48 -06:00
parent b535a6eb32
commit 6cdcf4930d
3 changed files with 11 additions and 7 deletions

View File

@@ -1,5 +1,11 @@
.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;
}

View File

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