react-datepicker-ignore-onclickoutside input css 수정하기

Mori·2022년 2월 9일
2

react date-picker css 커스텀 중
react-datepicker-ignore-onclickoutside 는 css 선언에
없다는 것을 발견 했다.

<input type="text" 
	class="react-datepicker-ignore-onclickoutside" 
	value="2022/02/09">

그래서 임의로 className을 주어서 해결했다.
저 react-datepicker-ignore-onclickoutside 속성은
결국 react-datepicker__input-container 안의 input을 지칭하는 것이기 때문에, 새로 작성해 주었다.

.react-datepicker__input-container > input {
	height: 100%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

0개의 댓글