diff options
author | Bryan Brattlof <hello@bryanbrattlof.com> | 2020-06-24 22:06:47 -0400 |
---|---|---|
committer | Bryan Brattlof <hello@bryanbrattlof.com> | 2020-06-24 22:06:47 -0400 |
commit | 3254e875ee5303cea907aea416285e283e824266 (patch) | |
tree | c9341844591b1999fa0e52a83468d9081e9b65a3 | |
parent | e1477788202d9ef309f6ef3906dff80ec04496ae (diff) | |
download | bryanbrattlof.com-3254e875ee5303cea907aea416285e283e824266.tar.gz bryanbrattlof.com-3254e875ee5303cea907aea416285e283e824266.tar.bz2 |
remove horizontal margins from block-quotes
I don't use block-quotes that much, but while editing a draft I wanted
to quote a passage from a book, and saw how horrible the block-quote
styling was. This fixes that, and removes the un-used .attribution
element.
-rw-r--r-- | stylesheets/article.scss | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/stylesheets/article.scss b/stylesheets/article.scss index 41b7386..e80c84a 100644 --- a/stylesheets/article.scss +++ b/stylesheets/article.scss @@ -156,14 +156,9 @@ em { blockquote { border-left: 5px solid lighten($secondary-color, 10); font-style: italic; - margin: $default-spacing; + margin: $default-spacing 0; padding: ($default-spacing/2) $default-spacing; - .attribution { - margin: 0; - padding: 0; - } - @include print { page-break-inside: avoid; } |