Got Delayed in the Suez Canal

This commit is contained in:
2024-02-05 22:24:20 -06:00
parent e630bc82ee
commit 4bc65ec171
2 changed files with 17 additions and 12 deletions

View File

@@ -40,6 +40,10 @@
line-height: normal;
}
.timeAndGrid {
display: flex;
}
.timeColumn {
display: flex;
min-height: 573px;

View File

@@ -31,6 +31,7 @@ const Calendar: React.FC = (props) => {
))}
</div>
{/* Displaying the rest of the calendar */}
<div className={styles.timeAndGrid}>
<div className={styles.timeColumn}>
{hoursOfDay.map((hour) => (
<div key={hour} className={styles.timeLabelContainer}>
@@ -43,7 +44,7 @@ const Calendar: React.FC = (props) => {
row
))}
</div>
</div>
</div>
)
};