Improve the styling of related DPMs on user profile
This commit is contained in:
parent
6c73ed5131
commit
f5de71d0ad
|
@ -32,9 +32,8 @@
|
|||
</div>
|
||||
<div>
|
||||
<mat-list>
|
||||
<mat-list-item (click)="navigateToDmp(dmp)"
|
||||
*ngFor="let dmp of userProfile.associatedDmps">
|
||||
<div class="clickable">
|
||||
<mat-list-item *ngFor="let dmp of userProfile.associatedDmps">
|
||||
<div class="clickable" (click)="navigateToDmp(dmp)">
|
||||
{{dmp.label}}
|
||||
</div>
|
||||
<div class="ml-2">
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
.clickable{
|
||||
cursor: pointer;
|
||||
}
|
||||
.clickable:hover {
|
||||
//text-decoration: underline; //Alternative
|
||||
color: #00b29f !important;
|
||||
}
|
||||
// .two-line-mat-option {
|
||||
// height: 3.5em;
|
||||
// line-height: 1.2em;
|
||||
|
|
Loading…
Reference in New Issue