I am using Angular 5 with the Material Design modules.
In my html, I have a datepicker:
<mat-datepicker touchUi=true #picker></mat-datepicker>
In my CSS I set up some media queries:
/* Phones */
@media (max-width: 767px) {
}
/* Tablets */
@media (min-width: 768px) and (max-width: 991px) {
}
/* Desktops */
@media (min-width: 1200px) {
}
How can I remove the touchUi=true property for desktops?