Begin add MonParcours + Update css work

This commit is contained in:
Florian RICHER 2023-10-10 22:59:08 +02:00
parent 1e27d18cb3
commit f4dba8213d
21 changed files with 1499 additions and 36 deletions

View file

@ -6,7 +6,7 @@ pub fn SocialLinkContainer(
children: Children
) -> impl IntoView {
view! {
<div class="flex gap-5 justify-center flex-wrap my-5">
<div class="social_links">
{ children() }
</div>
}
@ -20,9 +20,9 @@ pub fn SocialLink(
icon: Icon,
) -> impl IntoView {
view! {
<a href=url target="_blank">
<Icon icon=icon class="mx-auto scale-150 mb-1" />
<span class="text-sm">{ children() }</span>
<a class="social_link" href=url target="_blank">
<Icon icon=icon />
<span>{ children() }</span>
</a>
}
}