Skip to content

Commit

Permalink
Merge pull request #186 from Donggrina/feature/search
Browse files Browse the repository at this point in the history
Fix: 일정 상세 시각, 검색 결과 등 수정
  • Loading branch information
DHyeon98 authored Jun 24, 2024
2 parents 2cb725e + 7b8de8a commit 8d74ed8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions components/calendar-monthly/calendar-todo.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
position: relative;
color: var(--text-color);
cursor: pointer;
margin-bottom: 12px;

&:hover {
background-color: #fafafa;
Expand Down
2 changes: 1 addition & 1 deletion pages/calendar/[calendarId]/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export default function CalendarById({ calendarId }: InferGetServerSidePropsType
</span>
<span className={styles.dot}></span>
<span>
{ampm} {hour && hour.toString().padStart(2, '0')}:{minute && minute.toString().padStart(2, '0')}
{ampm} {hour.toString().padStart(2, '0')}:{minute.toString().padStart(2, '0')}
</span>
</p>
<div className={styles.profiles}>
Expand Down

0 comments on commit 8d74ed8

Please sign in to comment.