I'm aware that currently cards are a lot simpler than buttons right now
but this may change in future and it feels cleaner to be able to create
new card styles without needing to know the internals of how they're
implemented.
// // Components
@import "mixins/alert";
@import "mixins/buttons";
+@import "mixins/cards";
@import "mixins/pagination";
@import "mixins/list-group";
@import "mixins/nav-divider";
--- /dev/null
+// Card variants
+
+@mixin card-variant($color) {
+ background-color: $color;
+ border-color: $color;
+}