Move fixes for mobile display of comments to file with access to breakpoints

This commit is contained in:
megakeegman 2022-01-28 21:23:52 -05:00
parent 51d2bd8a53
commit 85744a537e
2 changed files with 14 additions and 12 deletions

View file

@ -91,3 +91,17 @@
padding: 0.2em; padding: 0.2em;
border-radius: 0.3em; border-radius: 0.3em;
} }
@include until($tablet) {
.comment-section {
article {
display: block;
padding-bottom: 0;
}
.content p:not(:last-child) {
margin-bottom: 0;
}
}
}

View file

@ -51,15 +51,3 @@
position: absolute; position: absolute;
left: -4rem; left: -4rem;
} }
.comment-section {
article {
display: block;
padding-bottom: 0;
}
.content p:not(:last-child) {
margin-bottom: 0;
}
}