Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ <h1>{{ currentUser()?.fullName }}</h1>
</p>
</div>

<div class="flex flex-column gap-4 xl:align-items-end">
<div class="flex flex-column gap-3 md:flex-row xl:gap-4">
<div class="flex flex-column gap-4 xl:align-items-end xl:flex-1 min-w-0">
<div class="flex flex-column gap-3 md:flex-row xl:gap-4 w-full">
@if (currentUser()?.social?.orcid) {
<div class="flex flex-row align-items-center gap-2">
<img ngSrc="assets/icons/colored/orcid.svg" width="16" height="16" alt="orcid" />
Expand All @@ -39,9 +39,9 @@ <h1>{{ currentUser()?.fullName }}</h1>
</div>

@if (isEmploymentAndEducationVisible()) {
<div class="flex flex-column gap-3 md:flex-row xl:gap-4 white-space-nowrap">
<div class="flex flex-column gap-3 md:flex-row xl:gap-4 w-full">
@if (currentUser()?.education?.length) {
<div class="flex flex-row align-items-center gap-2 overflow-hidden">
<div class="flex flex-row align-items-center gap-2 flex-1 min-w-0">
<i class="fas fa-landmark"></i>
<h3 class="font-bold text-overflow-ellipsis overflow-hidden white-space-nowrap">
{{ currentUser()?.education?.[0]?.institution }}
Expand Down
Loading