diff options
| author | gijsbotje <[email protected]> | 2017-08-16 00:20:47 +0200 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-08-20 12:21:24 -0700 |
| commit | 2ba0127c9154a056d4c747d9c029f734fc5bdbc3 (patch) | |
| tree | f86f84b63483eb99a6c65bee979ff1df98a2435a | |
| parent | 25bbfcdd7c656395c00876ae8342e56b1c6945a0 (diff) | |
| download | bootstrap-2ba0127c9154a056d4c747d9c029f734fc5bdbc3.tar.xz bootstrap-2ba0127c9154a056d4c747d9c029f734fc5bdbc3.zip | |
fixes double border when .list-group.list-group-flush is preceded by .card-header
| -rw-r--r-- | scss/_card.scss | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scss/_card.scss b/scss/_card.scss index 51dc8b110..777a1a9aa 100644 --- a/scss/_card.scss +++ b/scss/_card.scss @@ -56,6 +56,10 @@ @include border-bottom-radius($card-border-radius); } } + + .card-header + .list-group > li:first-child { + border: 0; + } } |
