Sha256: 48b2cd80057a0a2cc85240bdd3cffe76230813cec9ebd0555752f06b999b3780
Contents?: true
Size: 736 Bytes
Versions: 130
Compression:
Stored size: 736 Bytes
Contents
// // Base styles // .card { display: block; // using display block because "-ms-flex-direction: column;" doesn't work in IE10 // display: -ms-flexbox; // -ms-flex-direction: column; } .card-body { -ms-flex: 1 1 auto; } // Card deck .card-deck { display: -ms-flexbox; -ms-flex-direction: column; @include media-breakpoint-up(sm) { -ms-flex-direction: row; -ms-flex-wrap: wrap; .card { display: -ms-flexbox; -ms-flex: 1 0 0%; -ms-flex-direction: column; } } } // // Card groups // .card-group { display: -ms-flexbox; -ms-flex-direction: column; @include media-breakpoint-up(sm) { -ms-flex-direction: row; -ms-flex-wrap: wrap; > .card { -ms-flex: 1 0 0%; } } }
Version data entries
130 entries across 130 versions & 1 rubygems