make font size smaller on tiny screens

This commit is contained in:
Alina Beck 2019-11-12 19:26:23 +03:00
parent 63d223e368
commit 1b16dab554

View File

@ -59,6 +59,10 @@ export default {
@media (max-width: 546px) {
top: $space-xx-small;
}
@media (max-width: 350px) {
font-size: $font-size-small;
}
}
.progress-bar__goal {
@ -85,5 +89,9 @@ export default {
position: absolute;
top: 50%;
left: $space-xx-small;
@media (max-width: 350px) {
font-size: $font-size-small;
}
}
</style>