diff options
| author | Mark Otto <[email protected]> | 2020-06-12 14:26:37 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-06-12 14:26:37 -0700 |
| commit | 286f16b92c546b96e1aadfb8cae409c34f036087 (patch) | |
| tree | 76438da50e9f81e3d86e3d48760cc828b9417bd6 /scss/_type.scss | |
| parent | 594e5fd07175baf796c03c1de755ee021e5b4c5d (diff) | |
| download | bootstrap-286f16b92c546b96e1aadfb8cae409c34f036087.tar.xz bootstrap-286f16b92c546b96e1aadfb8cae409c34f036087.zip | |
v5: Redo blockquote attributions (#30814)
* v5: Redo blockquote attributions
- Renames -small-* variables to -footer-*
- Updates blockquote demos with attribution to place it outside the blockquote with a figure wrapper
* Updated class name
* docs(examples): refactor blockquotes in masonry example
Co-authored-by: Gaƫl Poupard <[email protected]>
Co-authored-by: XhmikosR <[email protected]>
Diffstat (limited to 'scss/_type.scss')
| -rw-r--r-- | scss/_type.scss | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/scss/_type.scss b/scss/_type.scss index efa2c8155..b2d524ca1 100644 --- a/scss/_type.scss +++ b/scss/_type.scss @@ -84,14 +84,19 @@ // Blockquotes .blockquote { - margin-bottom: $spacer; + margin-bottom: $blockquote-margin-y; @include font-size($blockquote-font-size); + + > :last-child { + margin-bottom: 0; + } } .blockquote-footer { - display: block; - @include font-size($blockquote-small-font-size); - color: $blockquote-small-color; + margin-top: -$blockquote-margin-y; + margin-bottom: $blockquote-margin-y; + @include font-size($blockquote-footer-font-size); + color: $blockquote-footer-color; &::before { content: "\2014\00A0"; // em dash, nbsp |
