Fix and update contact link tooltips
This commit is contained in:
parent
74278bdb30
commit
29c40f0acc
|
|
@ -17,13 +17,13 @@
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex-initial">
|
<div class="flex-initial">
|
||||||
<Link href="https://github.com/djkotowski" target="_blank">
|
<Link href="https://github.com/djkotowski" target="_blank" title="Github">
|
||||||
<GithubIcon class="w-12 h-12 lg:w-20 lg:h-20" />
|
<GithubIcon class="w-12 h-12 lg:w-20 lg:h-20" />
|
||||||
<div class="sr-only">Go to my Github account (@djkotowski)</div>
|
<div class="sr-only">Go to my Github account (@djkotowski)</div>
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex-initial">
|
<div class="flex-initial">
|
||||||
<Link href="https://linkedin.com/in/djkotowski" target="_blank">
|
<Link href="https://linkedin.com/in/djkotowski" target="_blank" title="LinkedIn">
|
||||||
<LinkedInIcon class="w-12 h-12 lg:w-20 lg:h-20" />
|
<LinkedInIcon class="w-12 h-12 lg:w-20 lg:h-20" />
|
||||||
<div class="sr-only">Go to my LinkedIn account (@djkotowski)</div>
|
<div class="sr-only">Go to my LinkedIn account (@djkotowski)</div>
|
||||||
</Link>
|
</Link>
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,8 @@
|
||||||
|
|
||||||
export let href: string
|
export let href: string
|
||||||
export let target: HTMLAnchorAttributes['target']
|
export let target: HTMLAnchorAttributes['target']
|
||||||
|
export let title: HTMLAnchorAttributes['title']
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<a class="text-cyan-200 hover:text-cyan-400 hover:border-b border-dotted" {href} {target}><slot /></a>
|
<a class="text-cyan-200 hover:text-cyan-400 hover:border-b border-dotted" {href} {target} {title}><slot /></a>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue