From 0ba61534cbfc83408cb64eb1145ecacef1ee8f04 Mon Sep 17 00:00:00 2001 From: doprz <52579214+doprz@users.noreply.github.com> Date: Wed, 6 Mar 2024 13:27:13 -0600 Subject: [PATCH] feat: add CSS for hourLine div --- .../common/CalendarGrid/CalendarGrid.module.scss | 1 - .../common/CalendarGridCell/CalendarGridCell.module.scss | 7 +++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/views/components/common/CalendarGrid/CalendarGrid.module.scss b/src/views/components/common/CalendarGrid/CalendarGrid.module.scss index 41909207e..8b6afca87 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 8561be7a8..47479d4d1 100644 --- a/src/views/components/common/CalendarGridCell/CalendarGridCell.module.scss +++ b/src/views/components/common/CalendarGridCell/CalendarGridCell.module.scss @@ -9,3 +9,10 @@ align-items: flex-start; border: 1px solid #dadce0; } + +.hourLine { + width: 165px; + height: 1px; + border-radius: var(--border-radius-none, 0px); + background: rgba(218, 220, 224, 0.25); +}