27 lines
340 B
SCSS
Executable File
27 lines
340 B
SCSS
Executable File
.card-columns {
|
|
@include media-breakpoint-down(md) {
|
|
column-count: 2;
|
|
}
|
|
@include media-breakpoint-down(sm) {
|
|
column-count: 1;
|
|
|
|
}
|
|
}
|
|
|
|
.card {
|
|
@include media-breakpoint-down(sm) {
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
}
|
|
|
|
.card-deck {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.card-title {
|
|
color: $body-color;
|
|
}
|
|
|
|
#feeds img {
|
|
width: 100%;
|
|
} |