Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions src/app/pages/register/register.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
(click)="scrollToSection($event, section.id)"
>
<div
class="relative z-10 flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full border-2 transition-all"
class="relative z-10 flex h-6 w-6 flex-shrink-0 items-center justify-center rounded-full border-2 text-sm font-medium transition-all"
[ngClass]="{
'border-gray-300': !visited,
'border-biocommons-primary group-hover:border-sky-900':
Expand All @@ -93,7 +93,8 @@
} @else if (last && active && valid) {
<ng-icon
name="heroCheck"
size="20"
size="14"
strokeWidth="2.5"
class="z-10 text-white"
></ng-icon>
} @else if (active) {
Expand All @@ -103,15 +104,17 @@
} @else if (completed && valid) {
<ng-icon
name="heroCheck"
size="20"
size="14"
strokeWidth="2.5"
class="z-10 text-white"
></ng-icon>
} @else if (completed && !valid) {
<span class="text-white">!</span>
} @else if (visited && valid) {
<ng-icon
name="heroCheck"
size="20"
size="14"
strokeWidth="2.5"
class="text-biocommons-primary"
></ng-icon>
} @else if (visited && !valid) {
Expand All @@ -124,7 +127,7 @@
<!-- Connecting line -->
@if (index < sections.length - 1) {
<div
class="absolute left-1/2 top-4 h-0.5 w-full transition-all"
class="absolute left-1/2 top-3 h-0.5 w-full transition-all"
[class]="
completed ? 'bg-biocommons-primary' : 'bg-gray-300'
"
Expand Down