From: RafiBomb Date: Mon, 21 Mar 2016 22:17:06 +0000 (-0700) Subject: adds bottom margin to callouts X-Git-Tag: v2.0.0~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=07f8fb14b34a35fb852db8e5247e8c8533499da1;p=thirdparty%2Ffoundation%2Ffoundation-emails.git adds bottom margin to callouts --- diff --git a/scss/components/_callout.scss b/scss/components/_callout.scss index d05b7983..7eca1d58 100644 --- a/scss/components/_callout.scss +++ b/scss/components/_callout.scss @@ -18,6 +18,10 @@ $callout-background-fade: 85% !default; /// @type Length $callout-padding: 10px !default; +/// Bottom margin of a callout. +/// @type Length +$callout-margin-bottom: $global-margin !default; + /// Border around a callout. /// @type Border $callout-border: 1px solid darken($callout-background, 20%) !default; @@ -43,8 +47,8 @@ th.callout { border: $callout-border; padding: $callout-padding; background: $callout-background; - margin-bottom: $global-margin; - Margin-bottom: $global-margin; + margin-bottom: $callout-margin-bottom; + Margin-bottom: $callout-margin-bottom; &.primary { background: scale-color($primary-color, $lightness: $callout-background-fade);