pedagogy: don't make the anchor scroll with comment text

This commit is contained in:
Antoine Bartuccio 2019-07-08 09:47:54 +02:00
parent e6e500e2f9
commit 1d319e90f0
Signed by: klmp200
GPG Key ID: E7245548C53F904B
1 changed files with 10 additions and 3 deletions

View File

@ -1952,7 +1952,11 @@ $pedagogy-white-text: #f0f0f0;
.comment {
grid-area: comment;
overflow: scroll;
display: grid;
grid-template-columns: auto;
grid-template-rows: auto auto;
grid-template-areas: "anchor" "markdown";
@media screen and (max-width: $large-devices){
border-left: solid;
@ -1961,15 +1965,18 @@ $pedagogy-white-text: #f0f0f0;
}
.anchor {
float: right;
grid-area: anchor;
text-align: right;
margin-right: 15px;
}
.markdown {
grid-area: markdown;
overflow: scroll;
margin-top: 0px;
margin-right: 0px;
padding: 10px;
padding-left: 40px;
overflow: auto;
text-align: justify;
}
}