Client - hide workout title on small resolutions

This commit is contained in:
Sam
2021-11-03 11:12:53 +01:00
parent a950806282
commit 7b44b92dd3
12 changed files with 24 additions and 17 deletions

View File

@ -164,6 +164,13 @@
font-size: 0.85em;
font-style: italic;
}
.workout-title {
display: block;
padding: 0 $default-padding;
@media screen and (max-width: $x-small-limit) {
display: none;
}
}
}
.workout-map {