데스크톱에서 달력 크기 조정

데스크톱에서 캘린더 크기를 줄이기 위해 html 클래스 안에 있는 desktop-view not-mobile-device를 검사하고 있었는데, 이 작업을 수행하기 위해 CSS가 변경되어야 할 위치를 찾았습니다.

fc-month view 클래스가 우리가 관심 있는 캘린더 위젯인 것 같고, fc-view-container 클래스를 통해 CSS로 로컬에서 상대적 크기를 조정하는 데 성공했습니다. 그러나 너비만 축소할 수 있었고, 높이 또는 전체 크기는 조정할 수 없었습니다.

로컬에서 수정을 시도할 때 이 문제를 겪은 다른 사람이 있을까요?

You should be able to change the height using the .calendar.fc element.

Ah, but unfortunately you’ve pictured the per topic calendar, and not the category one

Same element is shown on the category view. You may need a bit more CSS though:

#main-outlet .calendar.fc.fc-unthemed {
  height: 200px;
  overflow-y: scroll;
}