Skip to content

Commit

Permalink
Merge pull request #238 from ssu-student-union/feat/#148_jongse_qa_3
Browse files Browse the repository at this point in the history
Feat/#148 jongse qa 3
  • Loading branch information
jongse7 authored Oct 16, 2024
2 parents c71996a + 9f15122 commit f6e9a16
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
1 change: 0 additions & 1 deletion src/pages/main/containers/LostArticleSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ const LostArticleSection = () => {
page: 0,
take: 2,
});
console.log('분실물' + data);
const navigate = useNavigate();

// PostCard 컴포넌트화
Expand Down
6 changes: 3 additions & 3 deletions src/pages/main/containers/MainScheduleSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ export function MainScheduleSection() {
const daysLeft = useVeritasDay(targetDate);

return (
<div className="h-[180px] w-full bg-primary text-primary-foreground">
<div className="flex h-full items-center justify-center text-center xs:gap-[1rem] sm:flex-row sm:gap-[1rem] md:flex-row md:gap-[1rem] lg:flex-col lg:gap-[7px] xl:flex-col xl:gap-[7px] xxl:flex-col xxl:gap-[7px]">
<div className="h-[180px] w-full bg-primary text-primary-foreground xs:h-[5rem] sm:h-[5rem] md:h-[5rem]">
<div className="flex h-full items-center justify-center text-center xs:justify-around xs:gap-[1rem] sm:flex-row sm:gap-[1rem] md:flex-row md:gap-[1rem] lg:flex-col lg:gap-[7px] xl:flex-col xl:gap-[7px] xxl:flex-col xxl:gap-[7px]">
<div className="rounded bg-background px-[2rem] py-1 font-semibold text-primary sm:text-xl md:text-xl lg:text-2xl xl:text-2xl xxl:text-2xl">
종강
</div>
<h1 className="font-bold leading-none sm:text-2xl md:text-3xl lg:text-6xl xl:text-6xl xxl:text-6xl">
<h1 className="font-bold leading-none xs:text-2xl sm:text-2xl md:text-3xl lg:text-6xl xl:text-6xl xxl:text-6xl">
{`D-${daysLeft}`}
</h1>
</div>
Expand Down
1 change: 0 additions & 1 deletion src/pages/main/containers/NoticeSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ const NoticeSection = () => {
memberCode: selectedSubcategories === '전체' ? '' : selectedSubcategories,
take,
});
console.log('공지사항' + data);
const todayPostCount = useTodayPost(selectedSubcategories === '전체' ? '' : selectedSubcategories);

return (
Expand Down
1 change: 0 additions & 1 deletion src/pages/main/containers/PetitionSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ const PetitionSection = () => {
navigate(`/petition-notice/${id}`);
window.scrollTo(0, 0);
};
console.log('청원' + data);

return (
<section className="w-full">
Expand Down

0 comments on commit f6e9a16

Please sign in to comment.