I have box with a number width and I want change font size of child element base on parent width , I used vw or em , but not work , Is is possible with just css or sass
<div class="timer" >
<div class="timer__minute">12</div>
</div>
sass
.timer{
min-width:100px;
max-width:500px;
&__minute{
padding:10px
}
}