mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-15 14:03:06 +00:00
28 lines
598 B
SCSS
28 lines
598 B
SCSS
@import '../../../styles/variables';
|
|
|
|
ds-wrapper-grid-element ::ng-deep {
|
|
div.thumbnail > img {
|
|
height: $card-thumbnail-height;
|
|
width: 100%;
|
|
}
|
|
.card-title {
|
|
line-height: $headings-line-height;
|
|
height: ($headings-line-height*3) +em;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.item-abstract {
|
|
line-height: $line-height-base;
|
|
height: ($line-height-base*5)+em;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.item-authors{
|
|
line-height: $line-height-base;
|
|
height: ($line-height-base*1.5)+em;
|
|
}
|
|
div.card {
|
|
margin-bottom: 20px;
|
|
}
|
|
}
|