From 36314e0e3bc77b9751d68ae8516295d30ca7f17b Mon Sep 17 00:00:00 2001 From: Derek Chen Date: Mon, 5 Feb 2024 22:11:58 -0600 Subject: [PATCH] Preparing to re-add hours to the left side --- .../common/CalendarGrid/CalendarGrid.module.scss | 1 - .../common/CalendarGridCell/CalendarGridCell.module.scss | 8 +++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/views/components/common/CalendarGrid/CalendarGrid.module.scss b/src/views/components/common/CalendarGrid/CalendarGrid.module.scss index dfdd5b9f..72bb32c1 100644 --- a/src/views/components/common/CalendarGrid/CalendarGrid.module.scss +++ b/src/views/components/common/CalendarGrid/CalendarGrid.module.scss @@ -18,7 +18,6 @@ display: grid; grid-template-columns: repeat(5, 1fr); grid-template-rows: repeat(13, 1fr); - grid-gap: 8px; } .calendarRow { diff --git a/src/views/components/common/CalendarGridCell/CalendarGridCell.module.scss b/src/views/components/common/CalendarGridCell/CalendarGridCell.module.scss index f56b322e..2199d866 100644 --- a/src/views/components/common/CalendarGridCell/CalendarGridCell.module.scss +++ b/src/views/components/common/CalendarGridCell/CalendarGridCell.module.scss @@ -9,4 +9,10 @@ align-items: flex-start; border: 1px solid #DADCE0; } - \ No newline at end of file + +.hourLine { + width: 165px; + height: 1px; + border-radius: var(--border-radius-none, 0px); + background: rgba(218, 220, 224, 0.25); +} \ No newline at end of file