-
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.
- Loading branch information
1 parent
72132d2
commit 474753a
Showing
13 changed files
with
243 additions
and
123 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
.react-calendar { | ||
border: none !important; | ||
width: 100% !important; | ||
height: 70% !important; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: space-around; | ||
} | ||
|
||
.react-calendar__navigation { | ||
margin-top: 8px; | ||
} | ||
|
||
/* 요일 타일 스타일링 */ | ||
.react-calendar__month-view__weekdays { | ||
@apply bg-hanaLightGreen text-center p-1 font-semibold rounded-md; | ||
} | ||
|
||
/* 요일 타일 텍스트 스타일링 */ | ||
.react-calendar__month-view__weekdays__weekday { | ||
@apply text-sm text-white; | ||
} | ||
|
||
/* 날짜 타일 기본 스타일링 */ | ||
.react-calendar__tile { | ||
@apply text-center p-2 m-1 hover:bg-blue-100 flex flex-col border border-b-2; | ||
border-bottom: 2px solid #ccc !important; | ||
} | ||
|
||
/* 오늘 날짜 타일 스타일링 */ | ||
/* .react-calendar__tile--now { | ||
@apply !bg-blue-300 !text-white; | ||
} */ | ||
|
||
/* 선택된 날짜 타일 스타일링 .react-calendar__tile--active { | ||
@apply !bg-yellow-100 !text-white; | ||
} */ | ||
|
||
/* 선택할 수 없는 날짜 타일 스타일링 */ | ||
.react-calendar__tile--disabled { | ||
@apply text-gray-400; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import Nav from '../Nav'; | ||
import { VStack } from '../ui/Stack'; | ||
|
||
const WorkPlaceAdd = () => { | ||
return ( | ||
<div style={{ height: '90vh' }}> | ||
<Nav title='사장님 ON'></Nav> | ||
|
||
<VStack className='p-6'> | ||
<h2 className='text-2xl text-left font-bold'>사업자이신가요?</h2> | ||
<h3 className='text-left font-semibold text-gray-400'> | ||
사업자등록번호로 사업장을 등록할 수 있어요. | ||
</h3> | ||
</VStack> | ||
</div> | ||
); | ||
}; | ||
export default WorkPlaceAdd; |
Oops, something went wrong.