From 854dc065e41fe9bbeaa0962810e967f30b982754 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 4 Dec 2014 15:19:23 -0800 Subject: [PATCH] fix blockquote margins, remify values --- scss/_type.scss | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scss/_type.scss b/scss/_type.scss index b0739c09f5..2c0928ea54 100644 --- a/scss/_type.scss +++ b/scss/_type.scss @@ -183,10 +183,10 @@ abbr[data-original-title] { // Blockquotes blockquote { - padding: ($line-height-computed / 2) $line-height-computed; - margin: 0 0 $line-height-computed; + padding: ($spacer / 2) $spacer; + margin: 0 0 $spacer; font-size: $blockquote-font-size; - border-left: 5px solid $blockquote-border-color; + border-left: .25rem solid $blockquote-border-color; p, ul, @@ -210,9 +210,9 @@ blockquote { // Opposite alignment of blockquote .blockquote-reverse { - padding-right: 15px; + padding-right: $spacer; padding-left: 0; - border-right: 5px solid $blockquote-border-color; + border-right: .25rem solid $blockquote-border-color; border-left: 0; text-align: right;