Merge pull request #4939 from mempool/hunicus/natsoni-formatting

Make room for natsoni as project member
This commit is contained in:
softsimon 2024-04-10 14:40:10 +09:00 committed by GitHub
commit f83025a9ff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 1 deletions

View File

@ -380,7 +380,7 @@
<h3 i18n="about.project_members">Project Members</h3> <h3 i18n="about.project_members">Project Members</h3>
<div class="wrapper"> <div class="wrapper">
<ng-template ngFor let-contributor [ngForOf]="contributors.core"> <ng-template ngFor let-contributor [ngForOf]="contributors.core">
<a [href]="'https://github.com/' + contributor.name" target="_blank" [title]="contributor.name"> <a [href]="'https://github.com/' + contributor.name" target="_blank" [title]="contributor.name" [class]="'project-member-avatar'">
<img class="image" [src]="'/api/v1/contributors/images/' + contributor.id" onError="this.src = '/resources/profile/unknown.svg'; this.className = 'image unknown'"/> <img class="image" [src]="'/api/v1/contributors/images/' + contributor.id" onError="this.src = '/resources/profile/unknown.svg'; this.className = 'image unknown'"/>
<span>{{ contributor.name }}</span> <span>{{ contributor.name }}</span>
</a> </a>

View File

@ -177,6 +177,10 @@
} }
} }
#project-members a.project-member-avatar img {
margin: 40px 20px 10px;
}
.copyright { .copyright {
text-align: left; text-align: left;
max-width: 620px; max-width: 620px;