Make room for natsoni as project member

This commit is contained in:
hunicus 2024-04-09 20:45:15 +09:00
parent b0058e94ce
commit 6daffe5b13
No known key found for this signature in database
GPG Key ID: 24837C51B6D81FD9
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;