Preparing to re-add hours to the left side

This commit is contained in:
2024-02-05 22:11:58 -06:00
parent cdc1fc9224
commit 36314e0e3b
2 changed files with 7 additions and 2 deletions

View File

@@ -18,7 +18,6 @@
display: grid; display: grid;
grid-template-columns: repeat(5, 1fr); grid-template-columns: repeat(5, 1fr);
grid-template-rows: repeat(13, 1fr); grid-template-rows: repeat(13, 1fr);
grid-gap: 8px;
} }
.calendarRow { .calendarRow {

View File

@@ -9,4 +9,10 @@
align-items: flex-start; align-items: flex-start;
border: 1px solid #DADCE0; border: 1px solid #DADCE0;
} }
.hourLine {
width: 165px;
height: 1px;
border-radius: var(--border-radius-none, 0px);
background: rgba(218, 220, 224, 0.25);
}