-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: NumberLabel에 들어가는 icon 옵셔널로 넣도록 수정하기 * fix: textArea랑 Input 간격 다른 부분 맞추기 * fix: TimeSelect 드롭다운 크기 조절을 위한 레이아웃 및 스타일 수정 * fix: 입금 안내 모달 x 버튼 클릭 시 페이지 이동 안하도록 수정 * fix: 관리자 페이지 순서대로 정렬 / 신청자 모달 navigate 경로 수정 * fix: 계좌번호 placeholder / 공지사항 엠티뷰 멘트 수정, 소셜링크 부분 유효성 검사 https:// 형식 추가 * fix: 자잘한 멘트 수정, 신청자 관리 토스트 추가, 스픽커 프로필 스크롤 추가 * fix: 소비니 언니와 함께 자잘한 멘트 수정 * fix: 디자인 QA 반영 * feat: home 배너 두번째 거 누르면 host 신청 부분으로 넘어가게 * fix: 픽사이트 줄바꿈 수정 * fix: offline 아이콘 다시 추출
- Loading branch information
Showing
39 changed files
with
190 additions
and
166 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,14 @@ | ||
import * as React from 'react'; | ||
import type { SVGProps } from 'react'; | ||
const SvgIcOffline = (props: SVGProps<SVGSVGElement>) => ( | ||
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" {...props}> | ||
<g clipPath="url(#ic_offline_svg__a)"> | ||
<path | ||
stroke="#3E3F45" | ||
strokeLinejoin="round" | ||
strokeWidth={1.5} | ||
d="M18.652 4.714a.25.25 0 0 1 .322.322l-5.307 14.196a.23.23 0 0 1-.098.128.26.26 0 0 1-.152.034.26.26 0 0 1-.147-.054.24.24 0 0 1-.08-.14l-1.397-5.998a1.75 1.75 0 0 0-1.307-1.307l-6-1.397a.24.24 0 0 1-.139-.08.26.26 0 0 1-.053-.147.26.26 0 0 1 .034-.152.23.23 0 0 1 .128-.098l14.196-5.307-.263-.703z" | ||
/> | ||
</g> | ||
<defs> | ||
<clipPath id="ic_offline_svg__a"> | ||
<path fill="#fff" d="M0 0h24v24H0z" /> | ||
</clipPath> | ||
</defs> | ||
<path | ||
stroke="#3E3F45" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
strokeWidth={1.5} | ||
d="m20 5-5.031 15.702a.51.51 0 0 1-.928 0l-2.886-6.36a1 1 0 0 0-.497-.497l-6.36-2.886a.51.51 0 0 1 0-.928z" | ||
/> | ||
</svg> | ||
); | ||
export default SvgIcOffline; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
export const CheckModalImage = '/image/icons/image_check_modal.png'; | ||
export const GuestProfileImage = '/image/profile/image_guest_profile.png'; | ||
export const HostProfileImage = '/image/profile/image_host_profile.png'; | ||
export const HostBackGroundImage = '/image/profile/image_host_background.png'; | ||
export const HostBackGroundImage = '/image/profile/image_host_background_ver2.png'; | ||
export const PicksightBanner = '/image/banners/picksight-banner.png'; | ||
export const PicksightMain = '/image/banners/picksight-main.png'; | ||
export const PicksightImage = '/image/banners/picksight-image.png'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.