pedagogy: remove stars on small devices for grade

This commit is contained in:
2019-08-08 12:46:51 +02:00
parent d29603c584
commit f09de0ab7d
2 changed files with 16 additions and 2 deletions

View File

@ -1694,6 +1694,10 @@ $pedagogy-white-text: #f0f0f0;
margin-top: 0px;
}
&.grade-without-star {
display: none
}
@media screen and (max-width: $large-devices){
&.star-not-checked {
margin-left: 5px;
@ -1705,6 +1709,15 @@ $pedagogy-white-text: #f0f0f0;
}
}
@media screen and (max-width: $small-devices){
&.grade-without-star {
display: block;
}
&.grade-with-star {
display: none;
}
}
#dynamic_view {
font-size: 1.1em;