You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
392 B
SCSS

.card {
margin-bottom: $grid-gutter-width;
@if $enable-shadows {
box-shadow: $card-box-shadow;
border: 0;
}
}
// Animated cards
.card-lift--hover {
cursor: pointer;
&:hover {
transform: translateY(-8px);
@include transition($transition-base);
}
}
// Card with shdadow
.card {
&.shadow {
border: 0 !important;
}
}