I am experiencing some issues with my slider and I'm not exactly sure what's causing them.
[]
.big-container {
display: block;
padding-left: 10px;
padding-right: 10px;
padding-top: 10px;
margin-bottom: 10px;
}
.question {
display: block;
width: 100%;
background-color: rgba(0, 255, 242, 0.507);
}
.answer {
display: block;
background-color: #eee;
padding-top: 5px;
margin-bottom: 10px;
color: #000088;
size: 10px;
}
<div class="big-container">
<label class="question">Tolerance (%):
<div class="answer">
<div><mat-slider thumbLabel tickInterval="10" min="0" max="100" step="1" value="1"></mat-slider></div>
</div>
</label>
</div>
I would like to achieve a similar user interface as the slider example shown on https://material.angular.io/components/slider/overview What steps should I take? The slider seems to be working but it's not displaying properly.