Skip to content

Commit

Permalink
fix: fix outlined not working on date field component
Browse files Browse the repository at this point in the history
  • Loading branch information
jongomez committed Oct 19, 2023
1 parent db4d10d commit 7a3fd89
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ import { dateFieldClasses } from '../DateField/DateField.classes'
export const DateRangePickerStyles = css`
.${dateRangePickerClasses.root} {
box-sizing: border-box;
/* Remove default outline styles from date fields. */
.${dateFieldClasses.outlined} {
border: none;
}
.${dateFieldClasses.icon} {
padding: 8px;
}
}
.${dateRangePickerClasses.label} {
Expand Down Expand Up @@ -131,15 +140,6 @@ export const DateRangePickerStyles = css`
}
}
.${dateFieldClasses.icon} {
padding: 8px;
}
/* Remove default outline styles from date fields. */
.${dateFieldClasses.outlined} {
border: none;
}
.${dateRangePickerClasses.separator} {
margin-left: 3px;
width: 1px;
Expand Down

0 comments on commit 7a3fd89

Please sign in to comment.