Have same margin for <hN> as a <div> on .card-headers (#19048)

* Have same margin for <hN> as a <div> on .card-headers
Related #18726

When you use a `<hN>` as `.card-header` there is `margin-bottom: .5rem` added. The changes set the margin-bottom to 0
* Removed space
This commit is contained in:
mkroeders 2016-09-12 08:32:51 +02:00 committed by Mark Otto
parent fe722c2453
commit 53a20c11d2
1 changed files with 1 additions and 0 deletions

View File

@ -70,6 +70,7 @@
.card-header {
@include clearfix;
padding: $card-spacer-y $card-spacer-x;
margin-bottom: 0; // Removes the default margin-bottom of <hN>
background-color: $card-cap-bg;
border-bottom: $card-border-width solid $card-border-color;