Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: DateInput component의 컬러코드 오류를 수정한다. #893

Merged
merged 4 commits into from
Nov 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ export const DateInput = withDateInputVariation(
justifyContent="center"
flexGrow={1}
disabled={disabled}
backgroundColor="transparent"
onClick={onFocus}
onBlur={() => setIsFocused(false)}
onFocus={() => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ exports[`<DatePickerField /> when size is lg match snapshot 1`] = `
box-sizing: border-box;
position: relative;
cursor: pointer;
background-color: inherit;
background-color: #00000000;
border-width: 0;
padding: 0;
overflow: hidden;
Expand Down Expand Up @@ -309,7 +309,7 @@ exports[`<DatePickerField /> when size is md match snapshot 1`] = `
box-sizing: border-box;
position: relative;
cursor: pointer;
background-color: inherit;
background-color: #00000000;
border-width: 0;
padding: 0;
overflow: hidden;
Expand Down Expand Up @@ -555,7 +555,7 @@ exports[`<DatePickerField /> when size is sm match snapshot 1`] = `
box-sizing: border-box;
position: relative;
cursor: pointer;
background-color: inherit;
background-color: #00000000;
border-width: 0;
padding: 0;
overflow: hidden;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ exports[`<RangePickerField /> when size is lg match snapshot 1`] = `
box-sizing: border-box;
position: relative;
cursor: pointer;
background-color: inherit;
background-color: #00000000;
border-width: 0;
padding: 0;
overflow: hidden;
Expand Down Expand Up @@ -349,7 +349,7 @@ exports[`<RangePickerField /> when size is md match snapshot 1`] = `
box-sizing: border-box;
position: relative;
cursor: pointer;
background-color: inherit;
background-color: #00000000;
border-width: 0;
padding: 0;
overflow: hidden;
Expand Down Expand Up @@ -615,7 +615,7 @@ exports[`<RangePickerField /> when size is sm match snapshot 1`] = `
box-sizing: border-box;
position: relative;
cursor: pointer;
background-color: inherit;
background-color: #00000000;
border-width: 0;
padding: 0;
overflow: hidden;
Expand Down
Loading