Skip to content

Commit

Permalink
πŸ’„ μΊ˜λ¦°λ” 이벀트 μŠ€νƒ€μΌ μˆ˜μ •
Browse files Browse the repository at this point in the history
- μ‹œκ°„μ΄ μž˜λ¦¬μ§€ μ•Šλ„λ‘ μŠ€νƒ€μΌ μ‘°μ •
- μ‹œκ°„μ„ mm:ss ν˜•μ‹μœΌλ‘œ λ‚˜νƒ€λƒ„
  • Loading branch information
ttaerrim committed Nov 29, 2023
1 parent bf36718 commit 6304d57
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 6304d57

Please sign in to comment.