pedagogy: fix margins on stars for mobile devices

This commit is contained in:
Antoine Bartuccio 2019-07-08 09:37:30 +02:00
parent cf1ec1dc86
commit e6e500e2f9
Signed by: klmp200
GPG Key ID: E7245548C53F904B
1 changed files with 17 additions and 2 deletions

View File

@ -1685,9 +1685,24 @@ $pedagogy-white-text: #f0f0f0;
.pedagogy {
&.star-not-checked {
color : #f7f7f7;
margin-bottom: 0px;
margin-top: 0px;
}
&.star-checked {
color: $pedagogy-orange;
margin-bottom: 0px;
margin-top: 0px;
}
@media screen and (max-width: $large-devices){
&.star-not-checked {
margin-left: 5px;
margin-right: 5px;
}
&.star-checked {
margin-left: 5px;
margin-right: 5px;
}
}
}
@ -2044,8 +2059,8 @@ $pedagogy-white-text: #f0f0f0;
}
@media screen and (max-width: $large-devices){
// text-align: center;
justify-self: center;
text-align: center;
justify-self: inherit;
padding-right: 0px;
}
}