Skip to content

Commit

Permalink
[Fix] QA 반영 (#52)
Browse files Browse the repository at this point in the history
* fix: QA 마지막 반영

- 활동 종료 시 타이틀 2줄 제한 내용 1줄 제한
- 추천 활동 로딩 시 헤더 배경색 변경
- 헤더 mt-10 제거
- 주소 검색 모달 fixed -> absolute 변환
- 자동 종료 후 홈으로 왔을때 계산 문제 해결
- 활동 종료 시 버튼 위치 문제 해결
- 불필요한 콘솔로그 제거

* fix: footer 위치 조정을 위한 트리맵 div 마진 증가
  • Loading branch information
nebulaBdj authored Nov 29, 2024
1 parent 2bd9a8f commit dde07dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/archive/components/KeywordsView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default function KeywordView({ currentDate }: { currentDate: Date }) {
return (
<div>
{data.monthlySavedTimeAndActivityCount.monthlyTotalActivityCount === 0 ? (
<div className="w-342 h-342 rounded-12 bg-primary_foundation-5 flex items-center justify-center p-24 mx-auto mt-20">
<div className="w-342 h-342 rounded-12 bg-primary_foundation-5 flex items-center justify-center p-24 mx-auto mt-20 mb-350">
<div className="mt-35 mb-20 flex flex-col items-center gap-8">
<h2 className="text-18">아직 모은 시간 조각이 없어요!</h2>
{currentYear === data.joinedYear &&
Expand Down
2 changes: 1 addition & 1 deletion src/app/archive/components/Treemap/Treemap.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export default function TreemapChart({
}

return (
<div className="w-345 h-345 mx-auto flex flex-wrap gap-4 rounded-12 my-20">
<div className="w-345 h-345 mx-auto flex flex-wrap gap-4 rounded-12 mt-20 mb-350">
{layouts.map(({ width, height, item }) => (
<button
key={item.keyword.category}
Expand Down

0 comments on commit dde07dd

Please sign in to comment.