forked from hazza/dspace-angular
24 lines
443 B
SCSS
24 lines
443 B
SCSS
@import '../../../styles/variables';
|
|
@import '../../../styles/mixins';
|
|
|
|
ds-wrapper-grid-element ::ng-deep {
|
|
div.thumbnail > img {
|
|
height: $card-thumbnail-height;
|
|
width: 100%;
|
|
}
|
|
div.card {
|
|
margin-bottom: 20px;
|
|
}
|
|
}
|
|
|
|
.card-columns {
|
|
@include media-breakpoint-only(lg) {
|
|
column-count: 3;
|
|
}
|
|
@include media-breakpoint-only(sm) {
|
|
column-count: 2;
|
|
}
|
|
@include media-breakpoint-only(xs) {
|
|
column-count: 1;
|
|
}
|
|
} |