pedagogy: fix weird blank spacing in comment block

This commit is contained in:
Antoine Bartuccio 2019-07-09 15:00:03 +02:00
parent b4b7bf05b4
commit 5229628d48
Signed by: klmp200
GPG Key ID: E7245548C53F904B
1 changed files with 4 additions and 6 deletions

View File

@ -2006,9 +2006,7 @@ $pedagogy-white-text: #f0f0f0;
.info { .info {
grid-area: info; grid-area: info;
margin-bottom: 0px; padding-bottom: 10px;
min-height: 38px;
@media screen and (max-width: $large-devices){ @media screen and (max-width: $large-devices){
border-left: solid; border-left: solid;
@ -2020,7 +2018,6 @@ $pedagogy-white-text: #f0f0f0;
color: red; color: red;
float: left; float: left;
padding-left: 10px; padding-left: 10px;
padding-bottom: 10px;
} }
.actions { .actions {
@ -2037,7 +2034,7 @@ $pedagogy-white-text: #f0f0f0;
grid-template-areas: "report date author"; grid-template-areas: "report date author";
background-color: $pedagogy-blue; background-color: $pedagogy-blue;
margin-top: 0px; margin-top: -1px;
@media screen and (max-width: $large-devices){ @media screen and (max-width: $large-devices){
grid-template-columns: auto; grid-template-columns: auto;
@ -2045,7 +2042,8 @@ $pedagogy-white-text: #f0f0f0;
grid-template-areas: grid-template-areas:
"author" "author"
"date" "date"
"report" "report";
margin-top: 0px;
} }
.report { .report {