display volunteer mail on team members

This commit is contained in:
memeriau 2022-04-17 23:11:31 +02:00
parent f74a8e7060
commit 5c841bcbd9
2 changed files with 8 additions and 1 deletions

View File

@ -65,6 +65,7 @@ const TeamMembers: FC<Props> = ({ teamId }): JSX.Element => {
> >
D D
</div> </div>
<div className={styles.volunteerEmail}>{volunteer.email}</div>
</li> </li>
))} ))}
</ul> </ul>

View File

@ -17,11 +17,17 @@ $height: 24px;
.volunteerName { .volunteerName {
display: inline-block; display: inline-block;
height: $height; height: $height;
width: 250px; width: 230px;
padding-right: 4px; padding-right: 4px;
text-align: right; text-align: right;
} }
.volunteerEmail {
display: inline-block;
height: $height;
padding-left: 4px;
}
.dayTitle { .dayTitle {
display: inline-block; display: inline-block;
width: 50px; width: 50px;