Skip to content
Merged
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
4 changes: 4 additions & 0 deletions src/material/datepicker/datepicker-content.scss
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,10 @@ $touch-max-height: 788px;
// Prevents the content from jumping around on Windows while the animation is running.
overflow: visible;

// Prevent the content from shrinking to a point where it doesn't fit all the dates anymore.
// stylelint-disable material/no-prefixes
min-height: fit-content;

&.mat-datepicker-content-animations-enabled {
animation: _mat-datepicker-content-dialog-enter 150ms cubic-bezier(0, 0, 0.2, 1);
}
Expand Down
Loading