clean up some embed CSS oddities

This commit is contained in:
Jeff Atwood 2016-05-26 01:08:48 -07:00
parent a7b994160a
commit a53b6d1d1b
1 changed files with 13 additions and 0 deletions

View File

@ -8,6 +8,10 @@
article.post {
border-bottom: 1px solid #ddd;
img.avatar {
border-radius: 50%;
}
&.deleted {
background-color: #ffe5e5;
}
@ -141,3 +145,12 @@ footer {
// load onebox CSS at the end
@import "./common/base/onebox";
// we apparently use bottom margins on paras in the embed CSS, leading to weirdness
// which we will now clean up
aside.onebox {
margin-bottom: 20px;
p {
margin-bottom: 0 !important;
}
}