Style the Angular Material Slider so that it is thicker / taller

后端 未结 3 1393
忘了有多久
忘了有多久 2021-02-20 12:02

I\'m having problems finding the magic sauce here.. It doesn\'t look like the API supports it, so I guess I\'m looking for some CSS to make the slider bigger.

3条回答
  •  一个人的身影
    2021-02-20 12:41

    Just overwrite mat css with this

    .mat-slider-track-fill,
    .mat-slider-wrapper,
    .mat-slider-track-wrapper,
    .mat-slider-track-background {
        height: 5px !important;
    }
    

提交回复
热议问题