mirror of
https://github.com/twbs/bootstrap.git
synced 2025-03-21 13:29:00 +01:00
Don't clearfix if flexbox is enabled. Fixes #18849
This commit is contained in:
parent
4fae7cbc88
commit
bd62b185f6
@ -12,7 +12,9 @@
|
||||
}
|
||||
|
||||
.card-block {
|
||||
@include clearfix;
|
||||
@if (not $enable-flex) {
|
||||
@include clearfix;
|
||||
}
|
||||
padding: $card-spacer-x;
|
||||
}
|
||||
|
||||
@ -69,7 +71,9 @@
|
||||
//
|
||||
|
||||
.card-header {
|
||||
@include clearfix;
|
||||
@if (not $enable-flex) {
|
||||
@include clearfix;
|
||||
}
|
||||
padding: $card-spacer-y $card-spacer-x;
|
||||
background-color: $card-cap-bg;
|
||||
border-bottom: $card-border-width solid $card-border-color;
|
||||
@ -80,7 +84,9 @@
|
||||
}
|
||||
|
||||
.card-footer {
|
||||
@include clearfix;
|
||||
@if (not $enable-flex) {
|
||||
@include clearfix;
|
||||
}
|
||||
padding: $card-spacer-y $card-spacer-x;
|
||||
background-color: $card-cap-bg;
|
||||
border-top: $card-border-width solid $card-border-color;
|
||||
|
Loading…
x
Reference in New Issue
Block a user