Skip to content

Commit

Permalink
Merge pull request #242 from ttaerrim/calendar-detail-2
Browse files Browse the repository at this point in the history
[Desgin] 캘린더 이벤트 스타일 수정
  • Loading branch information
ttaerrim authored Nov 29, 2023
2 parents 10134fa + 6304d57 commit 4616a2d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app/frontend/src/pages/Calendar/CalendarView.css.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { style } from '@vanilla-extract/css';
import { globalStyle, style } from '@vanilla-extract/css';

import { sansRegular14 } from '@/styles/font.css';

Expand All @@ -10,3 +10,7 @@ export const container = style([
paddingBottom: '4rem',
},
]);

globalStyle('.fc-h-event .fc-event-time', {
overflow: 'initial',
});
5 changes: 5 additions & 0 deletions app/frontend/src/pages/Calendar/CalendarView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ export function CalendarView({
eventTextColor={grayscale500}
eventDisplay="block"
eventClick={onClickEvent}
eventTimeFormat={{
hour: '2-digit',
minute: '2-digit',
hour12: false,
}}
/>
</div>
);
Expand Down

0 comments on commit 4616a2d

Please sign in to comment.