Commit cc814f4d authored by Leslie Hoare's avatar Leslie Hoare
Browse files

Create a mixin for creating new card styles.

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.
parent c240dd35
Showing with 7 additions and 0 deletions
+7 -0
......@@ -38,6 +38,7 @@
// // Components
@import "mixins/alert";
@import "mixins/buttons";
@import "mixins/cards";
@import "mixins/pagination";
@import "mixins/list-group";
@import "mixins/nav-divider";
......
// Card variants
@mixin card-variant($color) {
background-color: $color;
border-color: $color;
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment