Skip to content

Commit

Permalink
design: 층 수 이미지 텍스트 정렬
Browse files Browse the repository at this point in the history
  • Loading branch information
jiohjung98 committed Jun 9, 2024
1 parent 991708d commit a3a4039
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ const MeetingRoomIndex: React.FC = () => {
</div>
<div className="flex mt-[4px] items-center">
<Image src={'/floor.svg'} width={14} height={14} alt="floor" className="mr-[6px]" />
<div className="text-stone-500 text-xs font-normal font-['Pretendard'] mr-[12px] my-auto">
<div className="text-stone-500 text-xs font-normal font-['Pretendard'] mr-[12px] mt-auto">
{room.meetingRoomFloor < 0 ? `B${Math.abs(room.meetingRoomFloor)}` : `${room.meetingRoomFloor}`}
</div>
<Image src={'/capacity.svg'} width={14} height={14} alt="capacity" className="mr-[6px]" />
Expand Down
2 changes: 1 addition & 1 deletion src/components/reservation/meetingRoom/MeetingRoomInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ const MeetingRoomInfo = () => {
<div className="text-black/opacity-20 text-lg font-bold font-['Pretendard']">{meetingRoom.meetingRoomName}</div>
<div className="flex flex-row items-center">
<Image src={'/floor.svg'} width={14} height={14} alt="floor" className="mr-[6px]" />
<div className="text-stone-500 text-xs font-normal font-['Pretendard'] mr-[12px] my-auto">
<div className="text-stone-500 text-xs font-normal font-['Pretendard'] mr-[12px] mt-auto">
{meetingRoom.meetingRoomFloor < 0 ? `B${Math.abs(meetingRoom.meetingRoomFloor)}` : `${meetingRoom.meetingRoomFloor}`}
</div>
<Image src={'/capacity.svg'} width={14} height={14} alt="capacity" className="mr-[6px]" />
Expand Down

0 comments on commit a3a4039

Please sign in to comment.