From 9e7c6fbff155779f2a0ad9a50693f007c0fb62b8 Mon Sep 17 00:00:00 2001 From: Nathan Panchout Date: Wed, 28 Jan 2026 12:56:10 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8(front)=20update=20LeftPanel=20bord?= =?UTF-8?q?er=20style?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use contextual border token for consistency with design system. Remove unused divider class. Co-Authored-By: Claude Opus 4.5 --- .../src/features/calendar/components/LeftPanel.scss | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/frontend/apps/calendars/src/features/calendar/components/LeftPanel.scss b/src/frontend/apps/calendars/src/features/calendar/components/LeftPanel.scss index a8035a0..eebec5f 100644 --- a/src/frontend/apps/calendars/src/features/calendar/components/LeftPanel.scss +++ b/src/frontend/apps/calendars/src/features/calendar/components/LeftPanel.scss @@ -3,7 +3,8 @@ flex-direction: column; height: 100%; background-color: var(--c--theme--colors--greyscale-000); - border-right: 1px solid var(--c--theme--colors--greyscale-200); + border-right: 1px solid + var(--c--contextuals--border--semantic--neutral--tertiary); overflow-y: auto; &__create { @@ -14,10 +15,4 @@ justify-content: center; } } - - &__divider { - height: 1px; - background-color: var(--c--theme--colors--greyscale-200); - margin: 0.5rem 0.75rem; - } }