Skip to content

Commit 93af464

Browse files
committed
src/app/item-page: adjust grid in simple item view
The Bootstrap grid is composed of 12 columns, but we are not using the entire grid, which could lead to unexpected stacking depending on the viewport size. This also allows more horizontal space to be used by text-heavy content like abstracts and citations.
1 parent 7e4e662 commit 93af464

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/app/item-page/simple/item-types/publication/publication.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
[label]="'publication.page.publisher'">
5555
</ds-generic-item-page-field>
5656
</div>
57-
<div class="col-12 col-md-7">
57+
<div class="col-12 col-md-8">
5858
<ds-related-items
5959
[parentItem]="object"
6060
[relationType]="'isProjectOfPublication'"

src/app/item-page/simple/item-types/untyped-item/untyped-item.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
[label]="'item.page.publisher'">
5656
</ds-generic-item-page-field>
5757
</div>
58-
<div class="col-12 col-md-6">
58+
<div class="col-12 col-md-8">
5959
<ds-item-page-abstract-field [item]="object"></ds-item-page-abstract-field>
6060
<ds-generic-item-page-field [item]="object"
6161
[fields]="['dc.description']"

0 commit comments

Comments
 (0)