Skip to content

Commit

Permalink
Use smaller icon size
Browse files Browse the repository at this point in the history
  • Loading branch information
ekdahl committed Dec 28, 2024
1 parent 78b0488 commit ce174bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/Module/UserWelcomeModule.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,23 +88,23 @@ public function getBlock(Tree $tree, int $block_id, string $context, array $conf
'url' => $pedigree_chart->chartUrl($individual),
'title' => I18N::translate('Default chart'),
'icon' => 'icon-pedigree',
'symbol' => 'fa-solid fa-sitemap fa-2x',
'symbol' => 'fa-solid fa-sitemap fa-lg',

Check warning on line 91 in app/Module/UserWelcomeModule.php

View check run for this annotation

Codecov / codecov/patch

app/Module/UserWelcomeModule.php#L91

Added line #L91 was not covered by tests
];
}

$links[] = [
'url' => $individual->url(),
'title' => I18N::translate('My individual record'),
'icon' => 'icon-indis',
'symbol' => 'fa-regular fa-user fa-2x',
'symbol' => 'fa-regular fa-user fa-lg',

Check warning on line 99 in app/Module/UserWelcomeModule.php

View check run for this annotation

Codecov / codecov/patch

app/Module/UserWelcomeModule.php#L99

Added line #L99 was not covered by tests
];
}

$links[] = [
'url' => route(AccountEdit::class, ['tree' => $tree->name()]),
'title' => I18N::translate('My account'),
'icon' => 'icon-mypage',
'symbol' => 'fa-regular fa-user fa-2x',
'symbol' => 'fa-regular fa-user fa-lg',

Check warning on line 107 in app/Module/UserWelcomeModule.php

View check run for this annotation

Codecov / codecov/patch

app/Module/UserWelcomeModule.php#L107

Added line #L107 was not covered by tests
];
$content = view('modules/user_welcome/welcome', ['links' => $links]);

Expand Down

0 comments on commit ce174bf

Please sign in to comment.