Skip to content

Commit

Permalink
Fix: 사소한 디자인 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeniuus committed May 25, 2024
1 parent f954e7d commit c8b36a2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default function BuildingDetailSheet({ building, questId, visible, close
<S.HeaderCell>정복</S.HeaderCell>
<S.HeaderCell>폐업 추정</S.HeaderCell>
<S.HeaderCell>폐업</S.HeaderCell>
<S.HeaderCell>접근불가</S.HeaderCell>
<S.HeaderCell>접근 불가</S.HeaderCell>
</S.HeaderRow>
{building.places.map((place) => (
<PlaceRow place={place} questId={questId} key={place.placeId} />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default function BuildingDetailSheet({ building, questId, visible, close
<S.HeaderCell>정복</S.HeaderCell>
<S.HeaderCell>폐업 추정</S.HeaderCell>
<S.HeaderCell>폐업</S.HeaderCell>
<S.HeaderCell>접근불가</S.HeaderCell>
<S.HeaderCell>접근 불가</S.HeaderCell>
</S.HeaderRow>
{building.places.map((place) => (
<PlaceRow place={place} questId={questId} key={place.placeId} />
Expand Down
2 changes: 1 addition & 1 deletion app/modals/QuestSummarySheet/QuestSummarySheet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default function QuestSummarySheet({ questId, visible, close }: Props) {
<S.HeaderCell style={{ textAlign: "left" }}>건불 번호</S.HeaderCell>
<S.HeaderCell>장소 수</S.HeaderCell>
<S.HeaderCell>정복</S.HeaderCell>
<S.HeaderCell>폐업 및 접근불가</S.HeaderCell>
<S.HeaderCell>폐업 및 접근 불가</S.HeaderCell>
</S.HeaderRow>
{quest?.buildings.map((building) => (
<tr key={building.buildingId} className={css({ _hover: { backgroundColor: "var(--leaf-primary-98)" } })}>
Expand Down

0 comments on commit c8b36a2

Please sign in to comment.