0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-28 10:24:19 +01:00

Update card outline mixin

Fixes #22056 by ensuring outline cards make their header/footer transparent and use the right border color.
This commit is contained in:
Mark Otto 2017-04-08 21:03:54 -07:00 committed by Mark Otto
parent 2dfffbde89
commit 09f98fbd0e

View File

@ -13,6 +13,12 @@
@mixin card-outline-variant($color) {
background-color: transparent;
border-color: $color;
.card-header,
.card-footer {
background-color: transparent;
border-color: $color;
}
}
//