From 40ece9f42563eb3ff6663ec149c9a7fe8ced4f54 Mon Sep 17 00:00:00 2001 From: doprz <52579214+doprz@users.noreply.github.com> Date: Wed, 6 Mar 2024 12:59:44 -0600 Subject: [PATCH] chore: use camelCase for CSS modules --- .../CalendarGridCell/CalendarGridCell.module.scss | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/views/components/common/CalendarGridCell/CalendarGridCell.module.scss b/src/views/components/common/CalendarGridCell/CalendarGridCell.module.scss index 47479d4d..3f246f70 100644 --- a/src/views/components/common/CalendarGridCell/CalendarGridCell.module.scss +++ b/src/views/components/common/CalendarGridCell/CalendarGridCell.module.scss @@ -7,12 +7,13 @@ flex-direction: column; justify-content: center; align-items: flex-start; - border: 1px solid #dadce0; + position: relative; } .hourLine { - width: 165px; - height: 1px; - border-radius: var(--border-radius-none, 0px); - background: rgba(218, 220, 224, 0.25); + position: absolute; + left: 0; + right: 0; + top: 50%; + border-top: 1px solid black; /* Adjust line styles as needed */ }