From 1ceaefa7bca53a04922110224238ee6cc2711905 Mon Sep 17 00:00:00 2001 From: Camille Moussu <66134347+Eriikah@users.noreply.github.com> Date: Wed, 29 Apr 2026 17:59:53 +0200 Subject: [PATCH] [#817] removed deprecated border on sidebar and fix small visual bug cropping the bottom of the desktop sidebar (#852) Co-authored-by: Camille Moussu --- src/components/Calendar/Calendar.styl | 1 - src/components/Calendar/Sidebar/DesktopSidebar.tsx | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Calendar/Calendar.styl b/src/components/Calendar/Calendar.styl index 2a18eb8..6e93c31 100644 --- a/src/components/Calendar/Calendar.styl +++ b/src/components/Calendar/Calendar.styl @@ -38,7 +38,6 @@ margin-left 25% .sidebar - border-right 2px solid #f3f4f6 width 270px height 100% flex-direction column diff --git a/src/components/Calendar/Sidebar/DesktopSidebar.tsx b/src/components/Calendar/Sidebar/DesktopSidebar.tsx index 790fe0c..a0287b1 100644 --- a/src/components/Calendar/Sidebar/DesktopSidebar.tsx +++ b/src/components/Calendar/Sidebar/DesktopSidebar.tsx @@ -30,7 +30,8 @@ export const DesktopSidebar: React.FC = ({ paddingLeft: 3, paddingRight: 2, width: '270px', - marginTop: isIframe ? 1 : '70px' + marginTop: isIframe ? 1 : '70px', + height: isIframe ? 'calc(100% - 8px)' : 'calc(100% - 70px)' }, zIndex: 5 }}