Skip to content
This repository was archived by the owner on Sep 5, 2024. It is now read-only.

fix(datePicker): ensure one is able to override default sass variables values #7329

Closed
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
8 changes: 4 additions & 4 deletions src/components/datepicker/datePicker.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/** Styles for mdDatepicker. */
$md-datepicker-button-gap: 12px; // Space between the text input and the calendar-icon button.
$md-datepicker-border-bottom-gap: 5px; // Space between input and the grey underline.
$md-datepicker-open-animation-duration: 0.2s;
$md-datepicker-triangle-button-width: 36px;
$md-datepicker-button-gap: 12px !default; // Space between the text input and the calendar-icon button.
$md-datepicker-border-bottom-gap: 5px !default; // Space between input and the grey underline.
$md-datepicker-open-animation-duration: 0.2s !default;
$md-datepicker-triangle-button-width: 36px !default;

md-datepicker {
// Don't let linebreaks happen between the open icon-button and the input.
Expand Down