Skip to content

Commit 97f91b5

Browse files
committed
fix overflow
1 parent da1adeb commit 97f91b5

File tree

1 file changed

+2
-1
lines changed
  • src/programs/Calendar/CalendarSidebar

1 file changed

+2
-1
lines changed

src/programs/Calendar/CalendarSidebar/styles.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ export const StyledCalendarSidebar = styled.div<StyledCalendarSidebarProps>`
55
width: 100%;
66
height: 100%;
77
grid-area: side;
8-
overflow: auto;
8+
overflow-y: auto;
9+
overflow-x: hidden; // getting a tiny amount of overflow, I think because of flex gap's sub-pixel rounding
910
padding-left: 6px;
1011
box-sizing: border-box;
1112
`;

0 commit comments

Comments
 (0)